From 843674fca64a4d37dc8b4ae109690c668017f6da Mon Sep 17 00:00:00 2001 From: chen Date: Thu, 21 Jul 2022 19:07:20 +0800 Subject: [PATCH] modify samgr partname Signed-off-by: chen Change-Id: I78664c2a6dd9ddeb9138239b10af472965807e49 --- frameworks/bundle_lite/BUILD.gn | 8 ++++---- services/bundlemgr_lite/BUILD.gn | 12 ++++++------ services/bundlemgr_lite/bundle_daemon/BUILD.gn | 6 +++--- services/bundlemgr_lite/tools/BUILD.gn | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/frameworks/bundle_lite/BUILD.gn b/frameworks/bundle_lite/BUILD.gn index bf454b4..e06bd93 100644 --- a/frameworks/bundle_lite/BUILD.gn +++ b/frameworks/bundle_lite/BUILD.gn @@ -62,8 +62,8 @@ lite_library("bundle") { "${aafwk_lite_path}/interfaces/kits/ability_lite/slite", "${aafwk_lite_path}/interfaces/inner_api/abilitymgr_lite", "//foundation/communication/ipc/interfaces/innerkits/c/ipc/include", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/samgr", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/registry", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry", "//third_party/bounds_checking_function/include", "//utils/native/lite/include", "//utils/native/lite/memory/include", @@ -105,8 +105,8 @@ lite_library("bundle") { "${appexecfwk_lite_path}/interfaces/kits/bundle_lite", "${appexecfwk_lite_path}/utils/bundle_lite", "//foundation/communication/ipc/interfaces/innerkits/c/ipc/include", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/samgr", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/registry", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry", "//third_party/bounds_checking_function/include", "//utils/native/lite/include", "//third_party/cJSON", diff --git a/services/bundlemgr_lite/BUILD.gn b/services/bundlemgr_lite/BUILD.gn index 9cdbb1a..31e48a3 100644 --- a/services/bundlemgr_lite/BUILD.gn +++ b/services/bundlemgr_lite/BUILD.gn @@ -34,7 +34,7 @@ if (ohos_kernel_type == "liteos_m") { "${appexecfwk_lite_path}/frameworks/bundle_lite:bundle", "//base/hiviewdfx/hilog_lite/frameworks/featured:hilog_static", "//foundation/arkui/ace_engine_lite/frameworks:ace_lite", - "//foundation/distributedschedule/samgr_lite/samgr:samgr", + "//foundation/systemabilitymgr/samgr_lite/samgr:samgr", ] include_dirs = [ @@ -53,8 +53,8 @@ if (ohos_kernel_type == "liteos_m") { "${aafwk_lite_path}/interfaces/kits/want_lite", "${aafwk_lite_path}/frameworks/want_lite/include", "//base/global/resource_management_lite/interfaces/inner_api/include", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/registry", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/samgr", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr", "//foundation/communication/ipc/interfaces/innerkits/c/ipc/include", "//third_party/jerryscript/jerry-core/api", "//third_party/jerryscript/jerry-core/include", @@ -113,8 +113,8 @@ if (ohos_kernel_type == "liteos_m") { "${appexecfwk_lite_path}/frameworks/bundle_lite/include", "${appexecfwk_lite_path}/interfaces/kits/bundle_lite", "${appexecfwk_lite_path}/utils/bundle_lite", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/registry", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/samgr", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr", "//third_party/cJSON", "//third_party/zlib", "//third_party/zlib/contrib/minizip", @@ -134,7 +134,7 @@ if (ohos_kernel_type == "liteos_m") { "//base/security/appverify/interfaces/innerkits/appverify_lite:verify", "//build/lite/config/component/cJSON:cjson_shared", "//build/lite/config/component/zlib:zlib_shared", - "//foundation/distributedschedule/samgr_lite/samgr:samgr", + "//foundation/systemabilitymgr/samgr_lite/samgr:samgr", ] } lite_component("appexecfwk_services_lite") { diff --git a/services/bundlemgr_lite/bundle_daemon/BUILD.gn b/services/bundlemgr_lite/bundle_daemon/BUILD.gn index 1cf32f3..2d407a3 100755 --- a/services/bundlemgr_lite/bundle_daemon/BUILD.gn +++ b/services/bundlemgr_lite/bundle_daemon/BUILD.gn @@ -45,7 +45,7 @@ executable("bundle_daemon") { deps = [ "//base/hiviewdfx/hilog_lite/frameworks/featured:hilog_shared", "//build/lite/config/component/zlib:zlib_shared", - "//foundation/distributedschedule/samgr_lite/samgr:samgr", + "//foundation/systemabilitymgr/samgr_lite/samgr:samgr", ] include_dirs = [ @@ -53,8 +53,8 @@ executable("bundle_daemon") { "${appexecfwk_lite_path}/interfaces/inner_api/bundlemgr_lite", "${appexecfwk_lite_path}/utils/bundle_lite", "${appexecfwk_lite_path}/services/bundlemgr_lite/include", - "//foundation/distributedschedule/samgr_lite/interfaces/innerkits/samgr", - "//foundation/distributedschedule/samgr_lite/interfaces/innerkits/registry", + "//foundation/systemabilitymgr/samgr_lite/interfaces/innerkits/samgr", + "//foundation/systemabilitymgr/samgr_lite/interfaces/innerkits/registry", "//third_party/zlib/contrib/minizip", "//utils/native/lite/include", ] diff --git a/services/bundlemgr_lite/tools/BUILD.gn b/services/bundlemgr_lite/tools/BUILD.gn index 1d67dbd..2f676e5 100644 --- a/services/bundlemgr_lite/tools/BUILD.gn +++ b/services/bundlemgr_lite/tools/BUILD.gn @@ -42,7 +42,7 @@ executable("bm") { "//base/startup/syspara_lite/frameworks/parameter:parameter", "//build/lite/config/component/cJSON:cjson_shared", "//foundation/communication/ipc/interfaces/innerkits/c/ipc:ipc_single", - "//foundation/distributedschedule/samgr_lite/samgr:samgr", + "//foundation/systemabilitymgr/samgr_lite/samgr:samgr", ] include_dirs = [ @@ -57,8 +57,8 @@ executable("bm") { "${appexecfwk_lite_path}/frameworks/bundle_lite/include", "${appexecfwk_lite_path}/utils/bundle_lite", "${appexecfwk_lite_path}/interfaces/kits/bundle_lite", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/samgr", - "//foundation/distributedschedule/samgr_lite/interfaces/kits/registry", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr", + "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry", "//third_party/cJSON", "//utils/native/lite/include", "//foundation/communication/ipc/interfaces/innerkits/c/ipc/include",