From d4895b71ae883100b52178446534c1e3344e129f Mon Sep 17 00:00:00 2001 From: njupthan Date: Thu, 10 Feb 2022 08:55:45 +0000 Subject: [PATCH] Fix atomic ability part name change Signed-off-by: njupthan --- interfaces/BUILD.gn | 10 +++++----- services/BUILD.gn | 2 +- services/test/unittest/BUILD.gn | 2 +- test/systemtest/BUILD.gn | 3 +-- utils/dump/BUILD.gn | 2 +- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/interfaces/BUILD.gn b/interfaces/BUILD.gn index ac31b132..2bfd25a4 100644 --- a/interfaces/BUILD.gn +++ b/interfaces/BUILD.gn @@ -12,8 +12,8 @@ # limitations under the License. group("bgtaskmgr_interfaces") { - deps = [ - "kits:backgroundtaskmanager", - "innerkits:bgtaskmgr_innerkits", - ] -} \ No newline at end of file + deps = [ + "innerkits:bgtaskmgr_innerkits", + "kits:backgroundtaskmanager", + ] +} diff --git a/services/BUILD.gn b/services/BUILD.gn index bcb64745..2e90ee0b 100644 --- a/services/BUILD.gn +++ b/services/BUILD.gn @@ -47,8 +47,8 @@ ohos_shared_library("bgtaskmgr_service") { ] external_deps = [ + "ability_base:want", "ability_runtime:app_manager", - "ability_runtime:want", "bundle_framework:appexecfwk_core", "ces_standard:cesfwk_innerkits", "eventhandler:libeventhandler", diff --git a/services/test/unittest/BUILD.gn b/services/test/unittest/BUILD.gn index 39eb7fef..8475be68 100644 --- a/services/test/unittest/BUILD.gn +++ b/services/test/unittest/BUILD.gn @@ -42,8 +42,8 @@ ohos_unittest("bgtask_unit_test") { ] external_deps = [ + "ability_base:want", "ability_runtime:app_manager", - "ability_runtime:want", "bundle_framework:appexecfwk_base", "bundle_framework:appexecfwk_core", "ces_standard:cesfwk_innerkits", diff --git a/test/systemtest/BUILD.gn b/test/systemtest/BUILD.gn index 93e1c24a..9864fe06 100644 --- a/test/systemtest/BUILD.gn +++ b/test/systemtest/BUILD.gn @@ -46,8 +46,7 @@ ohos_systemtest("BgtaskDumpTest") { ] external_deps = [ - "ability_runtime:app_manager", - "ability_runtime:want", + "ability_base:want", "bundle_framework:appexecfwk_core", "hiviewdfx_hilog_native:libhilog", "ipc:ipc_core", diff --git a/utils/dump/BUILD.gn b/utils/dump/BUILD.gn index 007f7aec..af8ccb0e 100644 --- a/utils/dump/BUILD.gn +++ b/utils/dump/BUILD.gn @@ -40,7 +40,7 @@ ohos_executable("bgtask") { configs = [] external_deps = [ - "ability_runtime:want", + "ability_base:want", "hiviewdfx_hilog_native:libhilog", "ipc:ipc_core", "samgr_standard:samgr_proxy", -- Gitee