diff --git a/bundle.json b/bundle.json index 2551d01e208767ec3763deb93e1d7fa75379af72..e0e66a09e85dca2d0314aa98a9d95955c34dd868 100644 --- a/bundle.json +++ b/bundle.json @@ -91,7 +91,6 @@ ], "fwk_group": [ "//base/notification/distributed_notification_service/frameworks/ans:ans_client", - "//base/notification/distributed_notification_service/frameworks/core:ans_core", "//base/notification/distributed_notification_service/frameworks/js/napi:napi_notification", "//base/notification/distributed_notification_service/frameworks/js/napi:napi_reminder" ], diff --git a/frameworks/ans/BUILD.gn b/frameworks/ans/BUILD.gn index 3eca30b6663e8a7e1f047c27646d2da26d674469..11563ec6ad5c252bd5d650ff9316217971c73840 100644 --- a/frameworks/ans/BUILD.gn +++ b/frameworks/ans/BUILD.gn @@ -37,53 +37,72 @@ ohos_shared_library("ans_innerkits") { include_dirs = [ "${inner_api_path}" ] sources = [ - "src/badge_number_callback_data.cpp", - "src/enabled_notification_callback_data.cpp", - "src/message_user.cpp", - "src/notification.cpp", - "src/notification_action_button.cpp", - "src/notification_basic_content.cpp", - "src/notification_bundle_option.cpp", - "src/notification_content.cpp", - "src/notification_conversational_content.cpp", - "src/notification_conversational_message.cpp", - "src/notification_distributed_options.cpp", - "src/notification_do_not_disturb_date.cpp", - "src/notification_flags.cpp", - "src/notification_helper.cpp", - "src/notification_long_text_content.cpp", - "src/notification_media_content.cpp", - "src/notification_multiline_content.cpp", - "src/notification_normal_content.cpp", - "src/notification_picture_content.cpp", - "src/notification_request.cpp", - "src/notification_slot.cpp", - "src/notification_sorting.cpp", - "src/notification_sorting_map.cpp", - "src/notification_subscribe_info.cpp", - "src/notification_subscriber.cpp", - "src/notification_template.cpp", - "src/notification_user_input.cpp", + "${core_path}/common/src/ans_log_wrapper.cpp", + "${core_path}/common/src/ans_watchdog.cpp", + "${core_path}/src/ans_image_util.cpp", + "${core_path}/src/ans_manager_death_recipient.cpp", + "${core_path}/src/ans_manager_proxy.cpp", + "${core_path}/src/ans_manager_stub.cpp", + "${core_path}/src/ans_notification.cpp", + "${core_path}/src/ans_subscriber_proxy.cpp", + "${core_path}/src/ans_subscriber_stub.cpp", + "${frameworks_module_ans_path}/src/badge_number_callback_data.cpp", + "${frameworks_module_ans_path}/src/enabled_notification_callback_data.cpp", + "${frameworks_module_ans_path}/src/message_user.cpp", + "${frameworks_module_ans_path}/src/notification.cpp", + "${frameworks_module_ans_path}/src/notification_action_button.cpp", + "${frameworks_module_ans_path}/src/notification_basic_content.cpp", + "${frameworks_module_ans_path}/src/notification_bundle_option.cpp", + "${frameworks_module_ans_path}/src/notification_constant.cpp", + "${frameworks_module_ans_path}/src/notification_content.cpp", + "${frameworks_module_ans_path}/src/notification_conversational_content.cpp", + "${frameworks_module_ans_path}/src/notification_conversational_message.cpp", + "${frameworks_module_ans_path}/src/notification_distributed_options.cpp", + "${frameworks_module_ans_path}/src/notification_do_not_disturb_date.cpp", + "${frameworks_module_ans_path}/src/notification_flags.cpp", + "${frameworks_module_ans_path}/src/notification_helper.cpp", + "${frameworks_module_ans_path}/src/notification_long_text_content.cpp", + "${frameworks_module_ans_path}/src/notification_media_content.cpp", + "${frameworks_module_ans_path}/src/notification_multiline_content.cpp", + "${frameworks_module_ans_path}/src/notification_normal_content.cpp", + "${frameworks_module_ans_path}/src/notification_picture_content.cpp", + "${frameworks_module_ans_path}/src/notification_request.cpp", + "${frameworks_module_ans_path}/src/notification_slot.cpp", + "${frameworks_module_ans_path}/src/notification_sorting.cpp", + "${frameworks_module_ans_path}/src/notification_sorting_map.cpp", + "${frameworks_module_ans_path}/src/notification_subscribe_info.cpp", + "${frameworks_module_ans_path}/src/notification_subscriber.cpp", + "${frameworks_module_ans_path}/src/notification_template.cpp", + "${frameworks_module_ans_path}/src/notification_user_input.cpp", + "${frameworks_module_ans_path}/src/push_callback_stub.cpp", + "${frameworks_module_ans_path}/src/reminder_helper.cpp", + "${frameworks_module_ans_path}/src/reminder_request.cpp", + "${frameworks_module_ans_path}/src/reminder_request_alarm.cpp", + "${frameworks_module_ans_path}/src/reminder_request_calendar.cpp", + "${frameworks_module_ans_path}/src/reminder_request_timer.cpp", + "${frameworks_module_ans_path}/src/reminder_store.cpp", ] - configs = [ "${core_path}:public_ans_core_config" ] - public_configs = [ ":ans_innerkits_public_config" ] - deps = [ "${core_path}:ans_core" ] - external_deps = [ "ability_base:want", "ability_base:zuri", "ability_runtime:wantagent_innerkits", + "bundle_framework:appexecfwk_base", + "bundle_framework:appexecfwk_core", "c_utils:utils", "eventhandler:libeventhandler", + "hicollie:libhicollie", "hilog:libhilog", "hitrace:hitrace_meter", + "i18n:intl_util", "image_framework:image_native", "ipc:ipc_core", + "os_account:os_account_innerkits", "relational_store:native_rdb", "samgr:samgr_proxy", + "time_service:time_client", ] if (is_double_framework) { diff --git a/frameworks/ans/test/unittest/BUILD.gn b/frameworks/ans/test/unittest/BUILD.gn index 5d24e6edb459dd50769b0e0995b891505f6768ed..80f902f98e0c8e1fcdc57b34cc1bc5b6fe17c732 100644 --- a/frameworks/ans/test/unittest/BUILD.gn +++ b/frameworks/ans/test/unittest/BUILD.gn @@ -58,7 +58,6 @@ ohos_unittest("ans_reminder_unit_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gtest_main", ] @@ -104,7 +103,6 @@ ohos_unittest("reminder_request_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gtest_main", ] @@ -136,7 +134,6 @@ ohos_unittest("reminder_request_branch_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gtest_main", ] diff --git a/frameworks/core/BUILD.gn b/frameworks/core/BUILD.gn deleted file mode 100644 index 029d4221ad7f1b7bf6f0ef4c5c3440f140b4692d..0000000000000000000000000000000000000000 --- a/frameworks/core/BUILD.gn +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright (c) 2021-2023 Huawei Device Co., Ltd. -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -import("//base/notification/distributed_notification_service/notification.gni") -import("//build/ohos.gni") - -config("public_ans_core_config") { - include_dirs = [ - "${core_path}/common/include", - "${core_path}/include", - "${inner_api_path}", - - "//third_party/json/single_include", - ] -} - -ohos_shared_library("ans_core") { - sources = [ - "${core_path}/common/src/ans_log_wrapper.cpp", - "${core_path}/common/src/ans_watchdog.cpp", - "${core_path}/src/ans_image_util.cpp", - "${core_path}/src/ans_manager_death_recipient.cpp", - "${core_path}/src/ans_manager_proxy.cpp", - "${core_path}/src/ans_manager_stub.cpp", - "${core_path}/src/ans_notification.cpp", - "${core_path}/src/ans_subscriber_proxy.cpp", - "${core_path}/src/ans_subscriber_stub.cpp", - "${frameworks_module_ans_path}/src/badge_number_callback_data.cpp", - "${frameworks_module_ans_path}/src/enabled_notification_callback_data.cpp", - "${frameworks_module_ans_path}/src/message_user.cpp", - "${frameworks_module_ans_path}/src/notification.cpp", - "${frameworks_module_ans_path}/src/notification_action_button.cpp", - "${frameworks_module_ans_path}/src/notification_basic_content.cpp", - "${frameworks_module_ans_path}/src/notification_bundle_option.cpp", - "${frameworks_module_ans_path}/src/notification_constant.cpp", - "${frameworks_module_ans_path}/src/notification_content.cpp", - "${frameworks_module_ans_path}/src/notification_conversational_content.cpp", - "${frameworks_module_ans_path}/src/notification_conversational_message.cpp", - "${frameworks_module_ans_path}/src/notification_distributed_options.cpp", - "${frameworks_module_ans_path}/src/notification_do_not_disturb_date.cpp", - "${frameworks_module_ans_path}/src/notification_flags.cpp", - "${frameworks_module_ans_path}/src/notification_helper.cpp", - "${frameworks_module_ans_path}/src/notification_long_text_content.cpp", - "${frameworks_module_ans_path}/src/notification_media_content.cpp", - "${frameworks_module_ans_path}/src/notification_multiline_content.cpp", - "${frameworks_module_ans_path}/src/notification_normal_content.cpp", - "${frameworks_module_ans_path}/src/notification_picture_content.cpp", - "${frameworks_module_ans_path}/src/notification_request.cpp", - "${frameworks_module_ans_path}/src/notification_slot.cpp", - "${frameworks_module_ans_path}/src/notification_sorting.cpp", - "${frameworks_module_ans_path}/src/notification_sorting_map.cpp", - "${frameworks_module_ans_path}/src/notification_subscribe_info.cpp", - "${frameworks_module_ans_path}/src/notification_subscriber.cpp", - "${frameworks_module_ans_path}/src/notification_template.cpp", - "${frameworks_module_ans_path}/src/notification_user_input.cpp", - "${frameworks_module_ans_path}/src/push_callback_stub.cpp", - "${frameworks_module_ans_path}/src/reminder_helper.cpp", - "${frameworks_module_ans_path}/src/reminder_request.cpp", - "${frameworks_module_ans_path}/src/reminder_request_alarm.cpp", - "${frameworks_module_ans_path}/src/reminder_request_calendar.cpp", - "${frameworks_module_ans_path}/src/reminder_request_timer.cpp", - "${frameworks_module_ans_path}/src/reminder_store.cpp", - ] - - public_configs = [ ":public_ans_core_config" ] - - external_deps = [ - "ability_base:want", - "ability_base:zuri", - "ability_runtime:wantagent_innerkits", - "bundle_framework:appexecfwk_base", - "bundle_framework:appexecfwk_core", - "c_utils:utils", - "eventhandler:libeventhandler", - "hicollie:libhicollie", - "hilog:libhilog", - "hitrace:hitrace_meter", - "i18n:intl_util", - "image_framework:image_native", - "ipc:ipc_core", - "os_account:os_account_innerkits", - "relational_store:native_rdb", - "samgr:samgr_proxy", - "time_service:time_client", - ] - install_images = [ system_base_dir ] - relative_install_dir = "platformsdk" - innerapi_tags = [ "platformsdk" ] - part_name = "${component_name}" - subsystem_name = "${subsystem_name}" -} diff --git a/frameworks/core/test/unittest/ans_manager_death_recipient_test/BUILD.gn b/frameworks/core/test/unittest/ans_manager_death_recipient_test/BUILD.gn index b8c04c926c9ab224c9658c710189316dd4adb396..4f7cfcc8b4ab0b9094a4593d31ccb4419e11b85b 100644 --- a/frameworks/core/test/unittest/ans_manager_death_recipient_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_manager_death_recipient_test/BUILD.gn @@ -23,7 +23,7 @@ ohos_unittest("ans_manager_death_recipient_test") { sources = [ "ans_manager_death_recipient_unit_test.cpp" ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/frameworks/core/test/unittest/ans_manager_proxy_test/BUILD.gn b/frameworks/core/test/unittest/ans_manager_proxy_test/BUILD.gn index 96730313566365fe3222060a3b19e6bf81fbad92..25e4772a3117d72e4d272cf0fcd1c1db59d8bb74 100644 --- a/frameworks/core/test/unittest/ans_manager_proxy_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_manager_proxy_test/BUILD.gn @@ -31,7 +31,7 @@ ohos_unittest("ans_manager_proxy_test") { ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main", ] diff --git a/frameworks/core/test/unittest/ans_manager_stub_test/BUILD.gn b/frameworks/core/test/unittest/ans_manager_stub_test/BUILD.gn index b5edefea81c0a690b60b78cbfbc246d3ca990bb0..5f739a86cb9d52d95debfd5bcdb6d1d07c9bb3ac 100644 --- a/frameworks/core/test/unittest/ans_manager_stub_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_manager_stub_test/BUILD.gn @@ -23,7 +23,7 @@ ohos_unittest("ans_manager_stub_test") { sources = [ "ans_manager_stub_test.cpp" ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/frameworks/core/test/unittest/ans_notification_annex_test/BUILD.gn b/frameworks/core/test/unittest/ans_notification_annex_test/BUILD.gn index dcd23c96d49cf58bbda860ad71bd6f0b84411654..7f591f2a247ea3e9bebdad8042c629cfe08aade6 100644 --- a/frameworks/core/test/unittest/ans_notification_annex_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_notification_annex_test/BUILD.gn @@ -24,7 +24,7 @@ ohos_unittest("ans_notification_annex_test") { sources = [ "ans_notification_annex_test.cpp" ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gtest_main", ] diff --git a/frameworks/core/test/unittest/ans_notification_branch_test/BUILD.gn b/frameworks/core/test/unittest/ans_notification_branch_test/BUILD.gn index 34acc6d202fd341a30992a91772311c7299d4ea6..cc5425467f5b427b601458cfc4198755bb3782a7 100755 --- a/frameworks/core/test/unittest/ans_notification_branch_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_notification_branch_test/BUILD.gn @@ -30,7 +30,7 @@ ohos_unittest("ans_notification_branch_test") { ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main", ] diff --git a/frameworks/core/test/unittest/ans_notification_test/BUILD.gn b/frameworks/core/test/unittest/ans_notification_test/BUILD.gn index 06f6291c346319e8614eb3aa7be38afdc64d98f3..0baa458dca49d6d6a8ad3131af1c57a32c254b9c 100644 --- a/frameworks/core/test/unittest/ans_notification_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_notification_test/BUILD.gn @@ -30,7 +30,7 @@ ohos_unittest("ans_notification_test") { ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main", ] diff --git a/frameworks/core/test/unittest/ans_subscriber_proxy_branch_test/BUILD.gn b/frameworks/core/test/unittest/ans_subscriber_proxy_branch_test/BUILD.gn index 2301e2029c82b40a7226e291db734e814e29abab..c66a7869893e1e66d3f524f00842967996d65d44 100755 --- a/frameworks/core/test/unittest/ans_subscriber_proxy_branch_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_subscriber_proxy_branch_test/BUILD.gn @@ -27,7 +27,7 @@ ohos_unittest("ans_subscriber_proxy_branch_test") { sources = [ "ans_subscriber_proxy_branch_test.cpp" ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main", ] diff --git a/frameworks/core/test/unittest/ans_subscriber_proxy_test/BUILD.gn b/frameworks/core/test/unittest/ans_subscriber_proxy_test/BUILD.gn index 23b90a38324fac06f2241604eda8c1807ba17bc7..9f5c0eaf56d29cd5d4dc6aacc5a1f1c67264eb16 100644 --- a/frameworks/core/test/unittest/ans_subscriber_proxy_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_subscriber_proxy_test/BUILD.gn @@ -27,7 +27,7 @@ ohos_unittest("ans_subscriber_proxy_test") { sources = [ "ans_subscriber_proxy_unit_test.cpp" ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main", ] diff --git a/frameworks/core/test/unittest/ans_subscriber_stub_test/BUILD.gn b/frameworks/core/test/unittest/ans_subscriber_stub_test/BUILD.gn index 4e863b10807c3a7a53a5cd58019050ddd9427cca..79476454fddf6d974c7677f9681900bfb48f618d 100644 --- a/frameworks/core/test/unittest/ans_subscriber_stub_test/BUILD.gn +++ b/frameworks/core/test/unittest/ans_subscriber_stub_test/BUILD.gn @@ -23,7 +23,7 @@ ohos_unittest("ans_subscriber_stub_test") { sources = [ "ans_subscriber_stub_unit_test.cpp" ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/frameworks/js/napi/BUILD.gn b/frameworks/js/napi/BUILD.gn index ebbcced22fd3993aa40f28e230e330231ea408c2..e26c341b6fe0002401de0cebd0645ece32d565ca 100644 --- a/frameworks/js/napi/BUILD.gn +++ b/frameworks/js/napi/BUILD.gn @@ -71,7 +71,7 @@ ohos_shared_library("notification") { "src/unsubscribe.cpp", ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/frameworks/js/napi/src/manager/BUILD.gn b/frameworks/js/napi/src/manager/BUILD.gn index 5771fad276b5f99e9c0664ac1bb71f9a187def71..26b5bd905aa2d1b54d4e769df15f1e09a2dc8449 100644 --- a/frameworks/js/napi/src/manager/BUILD.gn +++ b/frameworks/js/napi/src/manager/BUILD.gn @@ -64,10 +64,7 @@ ohos_shared_library("notificationmanager") { "napi_template.cpp", ] - deps = [ - "${core_path}:ans_core", - "${frameworks_module_ans_path}:ans_innerkits", - ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/frameworks/js/napi/src/reminder/BUILD.gn b/frameworks/js/napi/src/reminder/BUILD.gn index 23b798fdffa664a809d7f48975c0d583c8524787..ccfbdb0589737c6a47f7bb99a2d0b0df922ad5d5 100644 --- a/frameworks/js/napi/src/reminder/BUILD.gn +++ b/frameworks/js/napi/src/reminder/BUILD.gn @@ -43,7 +43,7 @@ ohos_shared_library("reminderagent") { "reminder_common.cpp", ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", @@ -86,7 +86,7 @@ ohos_shared_library("reminderagentmanager") { "reminder_common.cpp", ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/frameworks/js/napi/src/subscribe/BUILD.gn b/frameworks/js/napi/src/subscribe/BUILD.gn index fed3414840ed910bf94819651db30c14611ac348..582c403592869e77cb9f2e877f6d0d581699237d 100644 --- a/frameworks/js/napi/src/subscribe/BUILD.gn +++ b/frameworks/js/napi/src/subscribe/BUILD.gn @@ -49,7 +49,7 @@ ohos_shared_library("notificationsubscribe") { "napi_subscribe.cpp", ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/frameworks/test/moduletest/BUILD.gn b/frameworks/test/moduletest/BUILD.gn index 05a0869ef5bb6fe5b1a7666af1fc882cbdd47957..0e9ff875ad2d7d9e1e6ea6eb4c3750850a1d1cc2 100644 --- a/frameworks/test/moduletest/BUILD.gn +++ b/frameworks/test/moduletest/BUILD.gn @@ -59,7 +59,6 @@ ohos_moduletest("ans_fw_module_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -124,7 +123,6 @@ ohos_moduletest("ans_innerkits_module_publish_test") { deps = [ "${ability_runtime_path}/frameworks/native/appkit:app_context", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -191,7 +189,6 @@ ohos_moduletest("ans_innerkits_module_slot_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -257,7 +254,6 @@ ohos_moduletest("ans_innerkits_module_setting_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", diff --git a/services/ans/BUILD.gn b/services/ans/BUILD.gn index b7fc200949fd9ca6c1346cd880a1e89b9d08bf62..090e1998d0eb49ec3956c91e1db5d3f85085067e 100644 --- a/services/ans/BUILD.gn +++ b/services/ans/BUILD.gn @@ -59,7 +59,7 @@ ohos_shared_library("libans") { defines = [] cflags = [] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] if (is_double_framework) { cflags += [ "-DCONFIG_DUAL_FRAMEWORK" ] diff --git a/services/ans/test/unittest/BUILD.gn b/services/ans/test/unittest/BUILD.gn index 179e8c646687df22fbd4dbfb7f271d793e01a600..158ac790ed14756c0a3544c5475c04ec473a1f29 100644 --- a/services/ans/test/unittest/BUILD.gn +++ b/services/ans/test/unittest/BUILD.gn @@ -40,7 +40,6 @@ ohos_unittest("reminder_unit_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -128,7 +127,7 @@ ohos_unittest("ans_unit_test") { ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", ] @@ -208,7 +207,7 @@ ohos_unittest("notification_service_test") { ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", ] @@ -289,7 +288,7 @@ ohos_unittest("notification_preferences_test") { ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", ] @@ -359,7 +358,7 @@ ohos_unittest("access_token_helper_test") { "access_token_helper_test/access_token_helper_test.cpp", ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", @@ -407,7 +406,6 @@ ohos_unittest("bundle_manager_helper_branch_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -458,7 +456,6 @@ ohos_unittest("notification_dialog_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -518,7 +515,6 @@ ohos_unittest("notification_subscriber_manager_branch_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -589,7 +585,6 @@ ohos_unittest("advanced_notification_service_branch_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -647,7 +642,6 @@ ohos_unittest("notification_preferences_database_branch_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -694,7 +688,6 @@ ohos_unittest("push_callback_stub_test") { sources = [ "push_callback_stub_test.cpp" ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", @@ -747,7 +740,6 @@ ohos_unittest("notification_rdb_data_mgr_test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/googletest:gtest_main", diff --git a/services/distributed/BUILD.gn b/services/distributed/BUILD.gn index 5f14517a3ee067428114f80895340643a697dd97..fdd4bd790ebb7798b9b8d3330505c4f2c072968a 100644 --- a/services/distributed/BUILD.gn +++ b/services/distributed/BUILD.gn @@ -38,11 +38,10 @@ ohos_shared_library("libans_distributed") { configs = [ ":ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] external_deps = [ "ability_base:want", diff --git a/services/distributed/test/unittest/BUILD.gn b/services/distributed/test/unittest/BUILD.gn index 6dd8792c5d0df434ff35b095dd0d1dcab15067c6..0dd4677ed185032607fdea95039ff89bcf35c959 100644 --- a/services/distributed/test/unittest/BUILD.gn +++ b/services/distributed/test/unittest/BUILD.gn @@ -63,12 +63,11 @@ ohos_unittest("ans_distributed_unit_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gtest_main", ] @@ -109,12 +108,11 @@ ohos_unittest("distributed_preferences_database_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] @@ -156,12 +154,11 @@ ohos_unittest("distributed_screen_status_manager_branch_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] @@ -203,12 +200,11 @@ ohos_unittest("distributed_database_branch_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] @@ -244,12 +240,11 @@ ohos_unittest("distributed_preferences_branch_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] @@ -282,12 +277,11 @@ ohos_unittest("distributed_device_callback_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] @@ -320,12 +314,11 @@ ohos_unittest("distributed_database_callback_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] @@ -357,12 +350,11 @@ ohos_unittest("distributed_flow_control_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] @@ -400,12 +392,11 @@ ohos_unittest("distributed_notification_manager_branch_test") { configs = [ "${services_path}/distributed/:ans_distributed_config", - "${core_path}:public_ans_core_config", "${frameworks_module_ans_path}:ans_innerkits_public_config", ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/distributed:libans_distributed", "//third_party/googletest:gtest_main", ] diff --git a/services/test/moduletest/BUILD.gn b/services/test/moduletest/BUILD.gn index 4476e29db5c1f2b78cce9aa7fcd1a4ec96545f8f..0739ebc7e796c618dd4efb2082f11048b093f5ea 100644 --- a/services/test/moduletest/BUILD.gn +++ b/services/test/moduletest/BUILD.gn @@ -44,7 +44,7 @@ ohos_moduletest("ans_module_test") { ] deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", ] diff --git a/test/bechmarktest/notification_publish_test/BUILD.gn b/test/bechmarktest/notification_publish_test/BUILD.gn index f347e2a9f9b8dfe7824541d1e5ca48ff1fe5ca97..9f1217602f169f3b50f426c923b6700b925787d7 100644 --- a/test/bechmarktest/notification_publish_test/BUILD.gn +++ b/test/bechmarktest/notification_publish_test/BUILD.gn @@ -26,7 +26,6 @@ ohos_benchmarktest("Benchmark_Publish_Test") { sources = [ "notification_publish_test.cpp" ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "//third_party/benchmark:benchmark", "//third_party/googletest:gtest_main", diff --git a/test/bechmarktest/notification_services_test/BUILD.gn b/test/bechmarktest/notification_services_test/BUILD.gn index 06a15fb1ffc6e26b0ce71eadfea580786c453a8f..27764712888170111e1897b51be330fb13296be8 100644 --- a/test/bechmarktest/notification_services_test/BUILD.gn +++ b/test/bechmarktest/notification_services_test/BUILD.gn @@ -35,7 +35,6 @@ ohos_benchmarktest("Benchmark_Notification_Servece_Test") { ] deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", "//third_party/benchmark:benchmark", diff --git a/test/fuzztest/addnotificationslot_fuzzer/BUILD.gn b/test/fuzztest/addnotificationslot_fuzzer/BUILD.gn index 5a12b3b32f7f72f17c1c66ebbf7b3d9a4b190c81..d9d7b6e997bcf0f9455aa81228d9e7cf43b16d66 100644 --- a/test/fuzztest/addnotificationslot_fuzzer/BUILD.gn +++ b/test/fuzztest/addnotificationslot_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("AddNotificationSlotFuzzTest") { sources = [ "addnotificationslot_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/addnotificationslots_fuzzer/BUILD.gn b/test/fuzztest/addnotificationslots_fuzzer/BUILD.gn index 172ea4262534ecb9914ccf4e452afa968a906b19..4470521299b25159b5277fcec31cd1669511cdb3 100644 --- a/test/fuzztest/addnotificationslots_fuzzer/BUILD.gn +++ b/test/fuzztest/addnotificationslots_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("AddNotificationSlotsFuzzTest") { sources = [ "addnotificationslots_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/addslotbytype_fuzzer/BUILD.gn b/test/fuzztest/addslotbytype_fuzzer/BUILD.gn index 36f79676eab84050fc65e7487d27e4281a3b5750..36f16697a8e07d2edce6d2ba69b9f99bcb3bee26 100644 --- a/test/fuzztest/addslotbytype_fuzzer/BUILD.gn +++ b/test/fuzztest/addslotbytype_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("AddSlotByTypeFuzzTest") { sources = [ "addslotbytype_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/advancednotificationservice_fuzzer/BUILD.gn b/test/fuzztest/advancednotificationservice_fuzzer/BUILD.gn index 5af5a6b7c9ddbd0350af144d94e54b6cdd52984b..0b22158fd8a41164d7c93c1d26791750943ea197 100644 --- a/test/fuzztest/advancednotificationservice_fuzzer/BUILD.gn +++ b/test/fuzztest/advancednotificationservice_fuzzer/BUILD.gn @@ -25,14 +25,10 @@ ohos_fuzztest("AdvancedNotificationServiceFuzzTest") { include_dirs = [ "${component_path}/test/fuzztest/fuzz_common_base", - "${core_path}/include", - "${inner_api_path}", - "${core_path}/common/include", - "${core_path}/include", "${component_path}/services/ans/include", - "${inner_api_path}", "${core_path}/common/include", "${core_path}/include", + "${inner_api_path}", "${ffrt_path}/interfaces/kits", ] cflags = [ @@ -45,7 +41,6 @@ ohos_fuzztest("AdvancedNotificationServiceFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "${services_path}/ans:libans", ] diff --git a/test/fuzztest/ansmanagerstub_fuzzer/BUILD.gn b/test/fuzztest/ansmanagerstub_fuzzer/BUILD.gn index e49940c5935b461ebacedf4d6bcda43fe252cd1f..be43d390d46fb53efb6a2426304fd16ae0659230 100644 --- a/test/fuzztest/ansmanagerstub_fuzzer/BUILD.gn +++ b/test/fuzztest/ansmanagerstub_fuzzer/BUILD.gn @@ -33,7 +33,6 @@ ohos_fuzztest("AnsManagerStubFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/ansmanagerstubannex_fuzzer/BUILD.gn b/test/fuzztest/ansmanagerstubannex_fuzzer/BUILD.gn index 5e24974bc78bd3f8c472adfa8e97b120a0a12f68..748db536b210c20d451d9305019b9cc15f29ab31 100644 --- a/test/fuzztest/ansmanagerstubannex_fuzzer/BUILD.gn +++ b/test/fuzztest/ansmanagerstubannex_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("AnsManagerStubAnnexFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/ansmanagerstubannexthree_fuzzer/BUILD.gn b/test/fuzztest/ansmanagerstubannexthree_fuzzer/BUILD.gn index ebcee745669213076e0d90f73fe4a0f131cf6879..1f7ddf245d6ed18dc7324a874db058190e1845ca 100644 --- a/test/fuzztest/ansmanagerstubannexthree_fuzzer/BUILD.gn +++ b/test/fuzztest/ansmanagerstubannexthree_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("AnsManagerStubAnnexThreeFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/ansmanagerstubannextwo_fuzzer/BUILD.gn b/test/fuzztest/ansmanagerstubannextwo_fuzzer/BUILD.gn index b417b4becc96f257d212b9361273c3e2a72bedd4..71aacb1c4a0d6567ccd3c807e14930d802e03485 100644 --- a/test/fuzztest/ansmanagerstubannextwo_fuzzer/BUILD.gn +++ b/test/fuzztest/ansmanagerstubannextwo_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("AnsManagerStubAnnexTwoFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/anssubscriberproxy_fuzzer/BUILD.gn b/test/fuzztest/anssubscriberproxy_fuzzer/BUILD.gn index 64a3494fd0f0f5fbe6c2f5af64b531179950777b..94d86bfd860291cb5a54ef3b165b21e54edada7f 100644 --- a/test/fuzztest/anssubscriberproxy_fuzzer/BUILD.gn +++ b/test/fuzztest/anssubscriberproxy_fuzzer/BUILD.gn @@ -33,7 +33,6 @@ ohos_fuzztest("AnsSubscriberProxyFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${component_path}\frameworks\core:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/anssubscriberstub_fuzzer/BUILD.gn b/test/fuzztest/anssubscriberstub_fuzzer/BUILD.gn index 2442faa4d1be9c10234d4c400d616a0a74b52758..1798340dc5cde1d5dee93f7ee452089d7fdb81ac 100644 --- a/test/fuzztest/anssubscriberstub_fuzzer/BUILD.gn +++ b/test/fuzztest/anssubscriberstub_fuzzer/BUILD.gn @@ -33,7 +33,6 @@ ohos_fuzztest("AnsSubscriberStubFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${component_path}\frameworks\core:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/cancelasbundle_fuzzer/BUILD.gn b/test/fuzztest/cancelasbundle_fuzzer/BUILD.gn index b8993ea70bfa31c3954baff855aa8966a0a17cda..3173a060e6e1b420a30e925061a999958b843e31 100644 --- a/test/fuzztest/cancelasbundle_fuzzer/BUILD.gn +++ b/test/fuzztest/cancelasbundle_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("CancelAsBundleFuzzTest") { sources = [ "cancelasbundle_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/cancelgroup_fuzzer/BUILD.gn b/test/fuzztest/cancelgroup_fuzzer/BUILD.gn index 3f6f64305d687f54c67fefc8828b1e28f29e6721..57d0a5a63c75eb5b28da51ba28bf375addbd152e 100644 --- a/test/fuzztest/cancelgroup_fuzzer/BUILD.gn +++ b/test/fuzztest/cancelgroup_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("CancelGroupFuzzTest") { sources = [ "cancelgroup_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/cancelnotification_fuzzer/BUILD.gn b/test/fuzztest/cancelnotification_fuzzer/BUILD.gn index 8c6148345b03b0b7f89cfa57c78d48c574ab07c7..a416ffb6ff96d992026a54ae2c91ea7bba8507af 100644 --- a/test/fuzztest/cancelnotification_fuzzer/BUILD.gn +++ b/test/fuzztest/cancelnotification_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("CancelNotificationFuzzTest") { sources = [ "cancelnotification_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/enabledistributed_fuzzer/BUILD.gn b/test/fuzztest/enabledistributed_fuzzer/BUILD.gn index f1adba758daacb456f8f47d042645f3acb78d5ac..084f60d6d916ada2d97b72caa0a5d5fb55120787 100644 --- a/test/fuzztest/enabledistributed_fuzzer/BUILD.gn +++ b/test/fuzztest/enabledistributed_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("EnableDistributedFuzzTest") { sources = [ "enabledistributed_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/enablednotificationcallbackdata_fuzzer/BUILD.gn b/test/fuzztest/enablednotificationcallbackdata_fuzzer/BUILD.gn index 37490e52ed808b8de87b990b8fa7b9a28887a1ec..2c575cba02979bdc29f3238bd0307f26f893a52b 100644 --- a/test/fuzztest/enablednotificationcallbackdata_fuzzer/BUILD.gn +++ b/test/fuzztest/enablednotificationcallbackdata_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("EnabledNotificationCallbackDataFuzzTest") { sources = [ "enablednotificationcallbackdata_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/getactivenotificationnums_fuzzer/BUILD.gn b/test/fuzztest/getactivenotificationnums_fuzzer/BUILD.gn index e06412a02cfaf14b787fc3288e42564217c6ff04..9d613111b09acd5e0e7d2ff8a14013c777ee7bb5 100644 --- a/test/fuzztest/getactivenotificationnums_fuzzer/BUILD.gn +++ b/test/fuzztest/getactivenotificationnums_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("GetActiveNotificationNumsFuzzTest") { sources = [ "getactivenotificationnums_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/getallactivenotifications_fuzzer/BUILD.gn b/test/fuzztest/getallactivenotifications_fuzzer/BUILD.gn index 8beeff49907e6c7392dd0d4a716eecdc89b4ee0b..5dc7744c74596cf5fc64f9d24f6608b835853dbb 100644 --- a/test/fuzztest/getallactivenotifications_fuzzer/BUILD.gn +++ b/test/fuzztest/getallactivenotifications_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("GetAllActiveNotificationsFuzzTest") { sources = [ "getallactivenotifications_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/getbundleimportance_fuzzer/BUILD.gn b/test/fuzztest/getbundleimportance_fuzzer/BUILD.gn index e3ef840bbcb068370d829d8faceacc81424e7d5c..5398e270f08758f8ccaa21767675920e6997201f 100644 --- a/test/fuzztest/getbundleimportance_fuzzer/BUILD.gn +++ b/test/fuzztest/getbundleimportance_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("GetBundleImportanceFuzzTest") { sources = [ "getbundleimportance_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/getnotificationslot_fuzzer/BUILD.gn b/test/fuzztest/getnotificationslot_fuzzer/BUILD.gn index 836a6b5d2fd372f7478f5b4a3a468ee25617cc50..52d17f3d3e25c2a3b1f3f7e5b2a510d8f0dc3ae4 100644 --- a/test/fuzztest/getnotificationslot_fuzzer/BUILD.gn +++ b/test/fuzztest/getnotificationslot_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("GetNotificationSlotFuzzTest") { sources = [ "getnotificationslot_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/getnotificationslotnumasbundle_fuzzer/BUILD.gn b/test/fuzztest/getnotificationslotnumasbundle_fuzzer/BUILD.gn index 146f95e49d7d03b154978b8bfbe3d3d90f5ebfb9..d0101570eca3c513312bbcb06210476b100191e7 100644 --- a/test/fuzztest/getnotificationslotnumasbundle_fuzzer/BUILD.gn +++ b/test/fuzztest/getnotificationslotnumasbundle_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("GetNotificationSlotNumAsBundleFuzzTest") { sources = [ "getnotificationslotnumasbundle_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/getnotificationslotsforbundle_fuzzer/BUILD.gn b/test/fuzztest/getnotificationslotsforbundle_fuzzer/BUILD.gn index c5b1168e9c5dfebb9b993a8b11afcabf707389ff..0d79b44e09bdf65bf919528af5a6e533ffaf6f80 100644 --- a/test/fuzztest/getnotificationslotsforbundle_fuzzer/BUILD.gn +++ b/test/fuzztest/getnotificationslotsforbundle_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("GetNotificationSlotsForBundleFuzzTest") { sources = [ "getnotificationslotsforbundle_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/messageuser_fuzzer/BUILD.gn b/test/fuzztest/messageuser_fuzzer/BUILD.gn index 4540aba965ef7e8317efffa376e25bfa844586d0..752635c7dd674d580e758e57def036bbb6ee3c5b 100644 --- a/test/fuzztest/messageuser_fuzzer/BUILD.gn +++ b/test/fuzztest/messageuser_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("MessageUserFuzzTest") { sources = [ "messageuser_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notification_fuzzer/BUILD.gn b/test/fuzztest/notification_fuzzer/BUILD.gn index ca8851a1e80c0907a0f3315307aa31e69576a0f4..b905b0b77ac47041744d404fe7904de175d85fec 100644 --- a/test/fuzztest/notification_fuzzer/BUILD.gn +++ b/test/fuzztest/notification_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("NotificationFuzzTest") { sources = [ "notification_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationactionbutton_fuzzer/BUILD.gn b/test/fuzztest/notificationactionbutton_fuzzer/BUILD.gn index da17eb673828ed0886dd7d57d8e5e63c4bf08a94..71d6fc1259ab2383e26f70d18d2bb44f8900c391 100644 --- a/test/fuzztest/notificationactionbutton_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationactionbutton_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationActionButtonFuzzTest") { sources = [ "notificationactionbutton_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationannex_fuzzer/BUILD.gn b/test/fuzztest/notificationannex_fuzzer/BUILD.gn index 1223eb837469f4aab0ba7dad88e7971b4a7f3bc6..0db9cdeec6766b6fd6c4b649503707f643e32c7f 100644 --- a/test/fuzztest/notificationannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationannex_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("NotificationAnnexFuzzTest") { sources = [ "notificationannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationbasiccontent_fuzzer/BUILD.gn b/test/fuzztest/notificationbasiccontent_fuzzer/BUILD.gn index b05f999d5ae6966c6e0109b07d2784ca6f3103ba..55bda34a891b06a1b6ccae616d61e2f0f50a77fb 100644 --- a/test/fuzztest/notificationbasiccontent_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationbasiccontent_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationBasicContentFuzzTest") { sources = [ "notificationbasiccontent_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationbundleoption_fuzzer/BUILD.gn b/test/fuzztest/notificationbundleoption_fuzzer/BUILD.gn index 9811d2323a130185d613ffec0b4aa0e370b13289..ba8c4a0f62cd83774f2a99683c943c7d13938443 100644 --- a/test/fuzztest/notificationbundleoption_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationbundleoption_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationBundleOptionFuzzTest") { sources = [ "notificationbundleoption_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationcontent_fuzzer/BUILD.gn b/test/fuzztest/notificationcontent_fuzzer/BUILD.gn index 3face20666b1ec01cbad52f671f28691fb5ef09c..5338199b67b4dfff195f0dd47ad6cbab0cb0644e 100644 --- a/test/fuzztest/notificationcontent_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationcontent_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationContentFuzzTest") { sources = [ "notificationcontent_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationconversationalmessage_fuzzer/BUILD.gn b/test/fuzztest/notificationconversationalmessage_fuzzer/BUILD.gn index d5f4eb6432df29bbcc0fb296e5e715aa65ca5821..fa6791624ef13c430820d15cbe3536611da73eeb 100644 --- a/test/fuzztest/notificationconversationalmessage_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationconversationalmessage_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationConversationalMessageFuzzTest") { sources = [ "notificationconversationalmessage_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationconversationalmessageannex_fuzzer/BUILD.gn b/test/fuzztest/notificationconversationalmessageannex_fuzzer/BUILD.gn index 1bdb553da9b552c74eab8c1861fd1964fd6ee91e..76231d209bd31cf6e0a6a7ce350df4f5499b618b 100644 --- a/test/fuzztest/notificationconversationalmessageannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationconversationalmessageannex_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("NotificationConversationalMessageAnnexFuzzTest") { sources = [ "notificationconversationalmessageannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationdistributedoptions_fuzzer/BUILD.gn b/test/fuzztest/notificationdistributedoptions_fuzzer/BUILD.gn index 6576d5ffcb9b9b5c68e7d969aacdade2d86082aa..9702451a4997f7fe2bb03678e5de08d5df3a69b0 100644 --- a/test/fuzztest/notificationdistributedoptions_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationdistributedoptions_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationDistributedOptionsFuzzTest") { sources = [ "notificationdistributedoptions_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationdonotdisturbdate_fuzzer/BUILD.gn b/test/fuzztest/notificationdonotdisturbdate_fuzzer/BUILD.gn index f1981f7f0fd127eb71febdfe438d8e6a92760ad2..f320b7bc629fd440c044e037a18c98c6ce5e6440 100644 --- a/test/fuzztest/notificationdonotdisturbdate_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationdonotdisturbdate_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationDoNotDisturbDateFuzzTest") { sources = [ "notificationdonotdisturbdate_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationflags_fuzzer/BUILD.gn b/test/fuzztest/notificationflags_fuzzer/BUILD.gn index a07a628a38a2377c52bcc6546ae10f858edf6931..2f58c2d31e480653522f6f35efeb869e8c54ce98 100644 --- a/test/fuzztest/notificationflags_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationflags_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("NotificationFlagsFuzzTest") { sources = [ "notificationflags_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationhelper_fuzzer/BUILD.gn b/test/fuzztest/notificationhelper_fuzzer/BUILD.gn index ee7f4308580884e78f6ce934bca659130523dcff..2fc37a97d285196a14d3fc394690e1d3feca4bff 100644 --- a/test/fuzztest/notificationhelper_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationhelper_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("NotificationHelperFuzzTest") { sources = [ "notificationhelper_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationlongtextcontent_fuzzer/BUILD.gn b/test/fuzztest/notificationlongtextcontent_fuzzer/BUILD.gn index 50064be3a63a068eeb8f70c3942424bfe340e74d..88660a6d6b3d1d2cb607dee7d47dcdfefd4860c2 100644 --- a/test/fuzztest/notificationlongtextcontent_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationlongtextcontent_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationLongTextContentFuzzTest") { sources = [ "notificationlongtextcontent_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationlongtextcontentannex_fuzzer/BUILD.gn b/test/fuzztest/notificationlongtextcontentannex_fuzzer/BUILD.gn index af45a506a73d70dbe84a35516cb99a5fd870d84c..c8adab38a81c7ef7ee90757627102eb6252359d8 100644 --- a/test/fuzztest/notificationlongtextcontentannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationlongtextcontentannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationLongTextContentAnnexFuzzTest") { sources = [ "notificationlongtextcontentannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationmediacontent_fuzzer/BUILD.gn b/test/fuzztest/notificationmediacontent_fuzzer/BUILD.gn index 27e2d7a700d5e1aca3fd76137de4608897bdc95b..e1b3bac418dfea03f81581ceca1b11d2933a9955 100644 --- a/test/fuzztest/notificationmediacontent_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationmediacontent_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationMediaContentFuzzTest") { sources = [ "notificationmediacontent_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationmultilinecontent_fuzzer/BUILD.gn b/test/fuzztest/notificationmultilinecontent_fuzzer/BUILD.gn index fc9f1c380972cad357571ba52fa430439d732b3f..c56a8c3d0d1ccc09414813bf1168b58673fa734d 100644 --- a/test/fuzztest/notificationmultilinecontent_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationmultilinecontent_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationMultiLineContentFuzzTest") { sources = [ "notificationmultilinecontent_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationmultilinecontentannex_fuzzer/BUILD.gn b/test/fuzztest/notificationmultilinecontentannex_fuzzer/BUILD.gn index e8cd3f99116494713cd54de5a52cc2b09ac4b119..bf9ccc8bcf75cdb92597822524279715cfffc5d2 100644 --- a/test/fuzztest/notificationmultilinecontentannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationmultilinecontentannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationMultiLineContentAnnexFuzzTest") { sources = [ "notificationmultilinecontentannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationnormalcontent_fuzzer/BUILD.gn b/test/fuzztest/notificationnormalcontent_fuzzer/BUILD.gn index 164da880ccd5c9952cbcd03b3f22ca8b1c8577e3..940764b887ffe66512d4727b174ac145ce19e52e 100644 --- a/test/fuzztest/notificationnormalcontent_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationnormalcontent_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationNormalContentFuzzTest") { sources = [ "notificationnormalcontent_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationpicturecontent_fuzzer/BUILD.gn b/test/fuzztest/notificationpicturecontent_fuzzer/BUILD.gn index 2c89b8f5581e23adef9847093d85a63208b47c7e..59b38f035011aec3d76c70fd0482e3738a7fd45a 100644 --- a/test/fuzztest/notificationpicturecontent_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationpicturecontent_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationPictureContentFuzzTest") { sources = [ "notificationpicturecontent_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationpicturecontentannex_fuzzer/BUILD.gn b/test/fuzztest/notificationpicturecontentannex_fuzzer/BUILD.gn index daffc531c688ba8981caf93cc1b96fc055aee16f..13f28ac607b0f9571f6d8527458876419b44c633 100644 --- a/test/fuzztest/notificationpicturecontentannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationpicturecontentannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationPictureContentAnnexFuzzTest") { sources = [ "notificationpicturecontentannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationrequest_fuzzer/BUILD.gn b/test/fuzztest/notificationrequest_fuzzer/BUILD.gn index 1cebe014ee3c7328c974983b19505c0d013e1452..04429d5e1239db853ef8983066808213fab18063 100644 --- a/test/fuzztest/notificationrequest_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationrequest_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationRequestFuzzTest") { sources = [ "notificationrequest_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationrequestannex_fuzzer/BUILD.gn b/test/fuzztest/notificationrequestannex_fuzzer/BUILD.gn index 7ba307907a02dfe83fdc5e63ae891d4055a86ccf..7db76a10d3705649debfea6ce619d416241645fd 100644 --- a/test/fuzztest/notificationrequestannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationrequestannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationRequestAnnexFuzzTest") { sources = [ "notificationrequestannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationslot_fuzzer/BUILD.gn b/test/fuzztest/notificationslot_fuzzer/BUILD.gn index e3704209cb4887b4cc8fc78859ed8757abb27ee7..cd52c3ef5df7f4f7424486aaa7340a01d2d5cd94 100644 --- a/test/fuzztest/notificationslot_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationslot_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("NotificationSlotFuzzTest") { sources = [ "notificationslot_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationsorting_fuzzer/BUILD.gn b/test/fuzztest/notificationsorting_fuzzer/BUILD.gn index d059e6be731d4f2738b6194109f4d7a9f406b281..58ff12e347d93a980182a667bf585f38c4e06c9c 100644 --- a/test/fuzztest/notificationsorting_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationsorting_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationSortingFuzzTest") { sources = [ "notificationsorting_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationsortingannex_fuzzer/BUILD.gn b/test/fuzztest/notificationsortingannex_fuzzer/BUILD.gn index 12fe0d2169d5578f04bd56a4bdc90f9790bc9ec8..891de35f5a694c3d5321b30dfbf45f82c19e2520 100644 --- a/test/fuzztest/notificationsortingannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationsortingannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationSortingAnnexFuzzTest") { sources = [ "notificationsortingannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationsortingmap_fuzzer/BUILD.gn b/test/fuzztest/notificationsortingmap_fuzzer/BUILD.gn index 4be7b4bc428b165c32de192110daeb44282433d5..d0eca3f008f36d9189208fdcef88550b3d43a9e7 100644 --- a/test/fuzztest/notificationsortingmap_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationsortingmap_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationSortingMapFuzzTest") { sources = [ "notificationsortingmap_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationsortingmapannex_fuzzer/BUILD.gn b/test/fuzztest/notificationsortingmapannex_fuzzer/BUILD.gn index d6793055b759e5510274bc48f04f7f3eca5b97e0..de99a5485b75e86e3697e075347436165d6a5572 100644 --- a/test/fuzztest/notificationsortingmapannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationsortingmapannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationSortingMapAnnexFuzzTest") { sources = [ "notificationsortingmapannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationsubscribeInfo_fuzzer/BUILD.gn b/test/fuzztest/notificationsubscribeInfo_fuzzer/BUILD.gn index ff5ba3358ddcd268e996b8cba0749747c4ee94e2..b46d5baf242a67ce0bcfcb22b512041b85cabcb8 100644 --- a/test/fuzztest/notificationsubscribeInfo_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationsubscribeInfo_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationSubscribeInfoFuzzTest") { sources = [ "notificationsubscribeInfo_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationtemplate_fuzzer/BUILD.gn b/test/fuzztest/notificationtemplate_fuzzer/BUILD.gn index ae5679b4b987197be1b72411760cde51f0f1daa6..d162be5696d922942d58d6e21bbd6ee8f745c470 100644 --- a/test/fuzztest/notificationtemplate_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationtemplate_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationTemplateFuzzTest") { sources = [ "notificationtemplate_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationtemplateannex_fuzzer/BUILD.gn b/test/fuzztest/notificationtemplateannex_fuzzer/BUILD.gn index 8d7826df4c3eea29388c92bfd21f2e28324afe8c..f095b1ef40498869139ec94b247ac0e985f8957e 100644 --- a/test/fuzztest/notificationtemplateannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationtemplateannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationTemplateAnnexFuzzTest") { sources = [ "notificationtemplateannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationuserinput_fuzzer/BUILD.gn b/test/fuzztest/notificationuserinput_fuzzer/BUILD.gn index 6c6acc8c1ee6be5926b7cabaffb1dacb0b04944b..687865ed3f0e70388d413c7859af1db5b9bb1dc5 100644 --- a/test/fuzztest/notificationuserinput_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationuserinput_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationUserInputFuzzTest") { sources = [ "notificationuserinput_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/notificationuserinputannex_fuzzer/BUILD.gn b/test/fuzztest/notificationuserinputannex_fuzzer/BUILD.gn index 231c7e4993f8fa590817967a2dfce61eb988ae97..272026617a519c834e2185eb6235b2674f96f59e 100644 --- a/test/fuzztest/notificationuserinputannex_fuzzer/BUILD.gn +++ b/test/fuzztest/notificationuserinputannex_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("NotificationUserInputAnnexFuzzTest") { sources = [ "notificationuserinputannex_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/publishcontinuoustasknotification_fuzzer/BUILD.gn b/test/fuzztest/publishcontinuoustasknotification_fuzzer/BUILD.gn index 0c02f6c52b875513507ba46fc4fed57a4ad0322b..c973e0ab19d89865695bf6901b3a21680784e4e7 100644 --- a/test/fuzztest/publishcontinuoustasknotification_fuzzer/BUILD.gn +++ b/test/fuzztest/publishcontinuoustasknotification_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("PublishContinuousTaskNotificationFuzzTest") { sources = [ "publishcontinuoustasknotification_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/publishnotification_fuzzer/BUILD.gn b/test/fuzztest/publishnotification_fuzzer/BUILD.gn index 74e02e9f91fd74dc0d4950086f7160fbcc0d3611..1965055808d720529612f9e1e06e1e8c2d6c6ad3 100644 --- a/test/fuzztest/publishnotification_fuzzer/BUILD.gn +++ b/test/fuzztest/publishnotification_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("PublishNotificationFuzzTest") { sources = [ "publishnotification_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/readfromparcel_fuzzer/BUILD.gn b/test/fuzztest/readfromparcel_fuzzer/BUILD.gn index 1bed3201a4699cb614810e53f64b626b86d36a83..13014c28bf73b0a726b044ff7442115eac0b76c0 100644 --- a/test/fuzztest/readfromparcel_fuzzer/BUILD.gn +++ b/test/fuzztest/readfromparcel_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("ReadFromParcelFuzzTest") { sources = [ "readfromparcel_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/reminderhelper_fuzzer/BUILD.gn b/test/fuzztest/reminderhelper_fuzzer/BUILD.gn index d01ba6ec271f06c69f48174e466fbd92936b03f5..03b4e9b4e9ff9846946c5225d4077e53c3d97ee0 100644 --- a/test/fuzztest/reminderhelper_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderhelper_fuzzer/BUILD.gn @@ -33,7 +33,6 @@ ohos_fuzztest("ReminderHelperFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderrequest_fuzzer/BUILD.gn b/test/fuzztest/reminderrequest_fuzzer/BUILD.gn index 709e404769f6745b9ac6f77b9e66d6dd2fe59d9b..c2ec06d750f1846090a3c70719a1867cf5d6f3e8 100644 --- a/test/fuzztest/reminderrequest_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderrequest_fuzzer/BUILD.gn @@ -33,7 +33,6 @@ ohos_fuzztest("ReminderRequestFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderrequestalarm_fuzzer/BUILD.gn b/test/fuzztest/reminderrequestalarm_fuzzer/BUILD.gn index b2459ebe5363d362132f5d09c99c4508eae936a1..64af12ec02720248ef54d7201949367d8f961183 100644 --- a/test/fuzztest/reminderrequestalarm_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderrequestalarm_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("ReminderRequestAlarmFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderrequestannex_fuzzer/BUILD.gn b/test/fuzztest/reminderrequestannex_fuzzer/BUILD.gn index 63b870b5922c2deda703637fddfc1de82839b483..e1f018caa3ac37ade3fe4699fa089d512c7024a6 100644 --- a/test/fuzztest/reminderrequestannex_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderrequestannex_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("ReminderRequestAnnexFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderrequestannexthree_fuzzer/BUILD.gn b/test/fuzztest/reminderrequestannexthree_fuzzer/BUILD.gn index 17ceb158f3f6b8b6ea08b49e2b22d48c770b484e..2f67bc9adfba0c4f559a93cfc1248fee83c874c1 100644 --- a/test/fuzztest/reminderrequestannexthree_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderrequestannexthree_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("ReminderRequestAnnexThreeFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderrequestcalendar_fuzzer/BUILD.gn b/test/fuzztest/reminderrequestcalendar_fuzzer/BUILD.gn index f2f02eb3f18cf58b63a4efcd1224db6fc520f8e6..0f0e4c073ba71b541fb3debf8945c67926f95fcf 100644 --- a/test/fuzztest/reminderrequestcalendar_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderrequestcalendar_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("ReminderRequestCalendarFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderrequestcontinuate_fuzzer/BUILD.gn b/test/fuzztest/reminderrequestcontinuate_fuzzer/BUILD.gn index 556ee40b0de5eb26db061fa881a465a00ba3ffd8..d51560302cc7554646676c0758cc167ab5a6b24a 100644 --- a/test/fuzztest/reminderrequestcontinuate_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderrequestcontinuate_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("ReminderRequestContinuateFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderrequesttimer_fuzzer/BUILD.gn b/test/fuzztest/reminderrequesttimer_fuzzer/BUILD.gn index 72070acec9cda0a27b6667e674510a4189a8dd39..89b6efa60dbd5ab7c1cfa835f8947a1a107dbb01 100644 --- a/test/fuzztest/reminderrequesttimer_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderrequesttimer_fuzzer/BUILD.gn @@ -34,7 +34,6 @@ ohos_fuzztest("ReminderRequestTimerFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderstore_fuzzer/BUILD.gn b/test/fuzztest/reminderstore_fuzzer/BUILD.gn index c86a21ca55e40a0c38bec77e05716265fbada44e..20115dc25ee21fd06dc6b459473a7bcab4dbe3f1 100644 --- a/test/fuzztest/reminderstore_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderstore_fuzzer/BUILD.gn @@ -33,7 +33,6 @@ ohos_fuzztest("ReminderStoreFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/reminderstoreannex_fuzzer/BUILD.gn b/test/fuzztest/reminderstoreannex_fuzzer/BUILD.gn index 8de6a0612999ffc61863f243150ec5b32d4e4d0b..a7ba789441511e16fe8e609e0683c6fd52869f01 100644 --- a/test/fuzztest/reminderstoreannex_fuzzer/BUILD.gn +++ b/test/fuzztest/reminderstoreannex_fuzzer/BUILD.gn @@ -33,7 +33,6 @@ ohos_fuzztest("ReminderStoreAnnexFuzzTest") { deps = [ "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", ] diff --git a/test/fuzztest/removenotification_fuzzer/BUILD.gn b/test/fuzztest/removenotification_fuzzer/BUILD.gn index 8505617f75c6a4e67a9918bcd441d9d60c35e7a3..5efaf197dfce4d86c8a7725d01171dae5320ce0a 100644 --- a/test/fuzztest/removenotification_fuzzer/BUILD.gn +++ b/test/fuzztest/removenotification_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("RemoveNotificationFuzzTest") { sources = [ "removenotification_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/removenotificationsbybundle_fuzzer/BUILD.gn b/test/fuzztest/removenotificationsbybundle_fuzzer/BUILD.gn index 16566717c12bb86c6e127984c4c0fe1dff8a8ef0..10a5bcf0217b80390bba6adeb20f9339651ebff0 100644 --- a/test/fuzztest/removenotificationsbybundle_fuzzer/BUILD.gn +++ b/test/fuzztest/removenotificationsbybundle_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("RemoveNotificationsByBundleFuzzTest") { sources = [ "removenotificationsbybundle_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/removenotificationslot_fuzzer/BUILD.gn b/test/fuzztest/removenotificationslot_fuzzer/BUILD.gn index 66cda9d3877b5eda5c6dc26efe0ed580c467b74a..8c3a8968ab1122072c4c7df06a798b2c57d7c0c0 100644 --- a/test/fuzztest/removenotificationslot_fuzzer/BUILD.gn +++ b/test/fuzztest/removenotificationslot_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("RemoveNotificationSlotFuzzTest") { sources = [ "removenotificationslot_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/setdonotdisturbdate_fuzzer/BUILD.gn b/test/fuzztest/setdonotdisturbdate_fuzzer/BUILD.gn index edfdacdc13ebee5122d94d8385aff657baf97f50..73177fb207b5b2cb46b503509b501c525b0c63cf 100644 --- a/test/fuzztest/setdonotdisturbdate_fuzzer/BUILD.gn +++ b/test/fuzztest/setdonotdisturbdate_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("SetDoNotDisturbDateFuzzTest") { sources = [ "setdonotdisturbdate_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/setnotificationbadgenum_fuzzer/BUILD.gn b/test/fuzztest/setnotificationbadgenum_fuzzer/BUILD.gn index 314dab968e922694bb50e368f4b7b81b58bab9e1..9aaf0e106b2874d56e86895b37584b2f9482418d 100644 --- a/test/fuzztest/setnotificationbadgenum_fuzzer/BUILD.gn +++ b/test/fuzztest/setnotificationbadgenum_fuzzer/BUILD.gn @@ -33,8 +33,8 @@ ohos_fuzztest("SetNotificationBadgeNumFuzzTest") { sources = [ "setnotificationbadgenum_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/setnotificationsenabledforallbundles_fuzzer/BUILD.gn b/test/fuzztest/setnotificationsenabledforallbundles_fuzzer/BUILD.gn index 0d4ec2b4743215bde273d850dde8d09c3e142750..eff426f0b100c52d545a8411147f621f132e689e 100644 --- a/test/fuzztest/setnotificationsenabledforallbundles_fuzzer/BUILD.gn +++ b/test/fuzztest/setnotificationsenabledforallbundles_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("SetNotificationsEnabledForAllBundlesFuzzTest") { sources = [ "setnotificationsenabledforallbundles_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/setprogressbar_fuzzer/BUILD.gn b/test/fuzztest/setprogressbar_fuzzer/BUILD.gn index afa922df285ef45e48886e01d840cc586c223ec8..23356a33515661858f84676b3d71ca5787e0682b 100644 --- a/test/fuzztest/setprogressbar_fuzzer/BUILD.gn +++ b/test/fuzztest/setprogressbar_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("SetProgressBarFuzzTest") { sources = [ "setprogressbar_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/fuzztest/settemplate_fuzzer/BUILD.gn b/test/fuzztest/settemplate_fuzzer/BUILD.gn index d32ce1179de5af1ad77487c8becb6281597a387f..220a9f55dd1eb37b6d793e745e09a675b9c477c4 100644 --- a/test/fuzztest/settemplate_fuzzer/BUILD.gn +++ b/test/fuzztest/settemplate_fuzzer/BUILD.gn @@ -32,8 +32,8 @@ ohos_fuzztest("SetTemplateFuzzTest") { sources = [ "settemplate_fuzzer.cpp" ] deps = [ - "${component_path}/frameworks/core:ans_core", "${component_path}/test/fuzztest/fuzz_common_base:fuzz_common_base", + "${frameworks_module_ans_path}:ans_innerkits", ] external_deps = [ diff --git a/test/systemtest/acts/ansDump/BUILD.gn b/test/systemtest/acts/ansDump/BUILD.gn index b84f9e7528e7e656cc0678e1879fd0bc3093e535..9d4e109a1e1779fea3e855d152ffbe8e39b38c6c 100644 --- a/test/systemtest/acts/ansDump/BUILD.gn +++ b/test/systemtest/acts/ansDump/BUILD.gn @@ -29,7 +29,7 @@ ohos_systemtest("AnsDumpTest") { } deps = [ - "${core_path}:ans_core", + "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gtest_main", ] diff --git a/tools/dump/BUILD.gn b/tools/dump/BUILD.gn index dd2f59804a9bcf51bf6f86ea77b40d2249f98627..beda4b6c5b10ba09dc195499fee75c5b463b9072 100644 --- a/tools/dump/BUILD.gn +++ b/tools/dump/BUILD.gn @@ -36,10 +36,10 @@ ohos_executable("anm") { cflags += [ "-DBINDER_IPC_32BIT" ] } - deps = [ "${core_path}:ans_core" ] + deps = [ "${frameworks_module_ans_path}:ans_innerkits" ] configs = [ - "${core_path}:public_ans_core_config", + "${frameworks_module_ans_path}:ans_innerkits_public_config", "${ability_runtime_inner_api_path}/wantagent:wantagent_innerkits_public_config", ] diff --git a/tools/test/unittest/dump/BUILD.gn b/tools/test/unittest/dump/BUILD.gn index 36e4b8dba45cc0daa7c6aec9842fabcf80bff9b4..3203ff2dee04a938fc92bb47a37d0bd78548e35d 100644 --- a/tools/test/unittest/dump/BUILD.gn +++ b/tools/test/unittest/dump/BUILD.gn @@ -51,7 +51,6 @@ ohos_unittest("notification_shell_command_dump_test") { } deps = [ - "${core_path}:ans_core", "${frameworks_module_ans_path}:ans_innerkits", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main",