From 3c9d28e51488303c2e72c3dc64e8e7d85b9ccd07 Mon Sep 17 00:00:00 2001 From: njupthan Date: Thu, 10 Feb 2022 09:13:59 +0800 Subject: [PATCH] Fix atomic ability part name change Signed-off-by: njupthan --- BUILD.gn | 3 +-- test/BUILD.gn | 3 +-- test/unittest/app_spawn_server_test/BUILD.gn | 6 ++---- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index cd98b423..9c138af0 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -70,8 +70,7 @@ ohos_static_library("appspawn_server") { "//utils/native/base:utils", ] external_deps = [ - "ability_runtime:app_manager", - "ability_runtime:want", + "ability_base:want", "bundle_framework:appexecfwk_base", "bundle_framework:appexecfwk_core", "hilog_native:libhilog", diff --git a/test/BUILD.gn b/test/BUILD.gn index 2df021e5..2df1ee15 100644 --- a/test/BUILD.gn +++ b/test/BUILD.gn @@ -65,8 +65,7 @@ ohos_source_set("appspawn_test_source") { deps = [] external_deps = [ - "ability_runtime:app_manager", - "ability_runtime:want", + "ability_base:want", "bundle_framework:appexecfwk_base", "bundle_framework:appexecfwk_core", "hiviewdfx_hilog_native:libhilog", diff --git a/test/unittest/app_spawn_server_test/BUILD.gn b/test/unittest/app_spawn_server_test/BUILD.gn index 6bdeb329..6cb7329a 100755 --- a/test/unittest/app_spawn_server_test/BUILD.gn +++ b/test/unittest/app_spawn_server_test/BUILD.gn @@ -39,8 +39,7 @@ ohos_unittest("AppSpawnServerOverrideTest") { ] external_deps = [ - "ability_runtime:app_manager", - "ability_runtime:want", + "ability_base:want", "bundle_framework:appexecfwk_base", "bundle_framework:appexecfwk_core", "hilog_native:libhilog", @@ -81,8 +80,7 @@ ohos_unittest("AppSpawnServerMockTest") { ] external_deps = [ - "ability_runtime:app_manager", - "ability_runtime:want", + "ability_base:want", "bundle_framework:appexecfwk_base", "bundle_framework:appexecfwk_core", "hilog_native:libhilog", -- Gitee