From 28abb5fd69ead7cc9b24284989b723aae651f625 Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Sat, 23 Jul 2022 16:06:22 +0800 Subject: [PATCH] build:appdatamgr split to four code warehouse: relational_store,data_share,preferences,kv_store Signed-off-by: PaDaBoo --- cameraApp/BUILD.gn | 2 +- gallery/BUILD.gn | 2 +- launcher/BUILD.gn | 2 +- setting/BUILD.gn | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cameraApp/BUILD.gn b/cameraApp/BUILD.gn index c96705a..b2a4ded 100755 --- a/cameraApp/BUILD.gn +++ b/cameraApp/BUILD.gn @@ -23,7 +23,7 @@ shared_library("cameraApp") { deps = [ "${aafwk_lite_path}/frameworks/ability_lite:aafwk_abilitykit_lite", "${appexecfwk_lite_path}/frameworks/bundle_lite:bundle", - "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", + "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", "//foundation/distributedschedule/samgr_lite/samgr:samgr", "//foundation/graphic/surface", "//foundation/graphic/ui:lite_ui", diff --git a/gallery/BUILD.gn b/gallery/BUILD.gn index 3f945d6..4032472 100755 --- a/gallery/BUILD.gn +++ b/gallery/BUILD.gn @@ -33,7 +33,7 @@ shared_library("gallery") { deps = [ "${aafwk_lite_path}/frameworks/ability_lite:aafwk_abilitykit_lite", "${appexecfwk_lite_path}/frameworks/bundle_lite:bundle", - "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", + "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", "//foundation/distributedschedule/samgr_lite/samgr:samgr", "//foundation/graphic/surface", "//foundation/graphic/ui:lite_ui", diff --git a/launcher/BUILD.gn b/launcher/BUILD.gn index 84c4cf7..6b84841 100755 --- a/launcher/BUILD.gn +++ b/launcher/BUILD.gn @@ -28,7 +28,7 @@ shared_library("launcher") { deps = [ "${aafwk_lite_path}/frameworks/ability_lite:aafwk_abilitykit_lite", "${appexecfwk_lite_path}/frameworks/bundle_lite:bundle", - "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", + "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", "//foundation/distributedschedule/samgr_lite/samgr:samgr", "//foundation/graphic/surface", "//foundation/graphic/ui:lite_ui", diff --git a/setting/BUILD.gn b/setting/BUILD.gn index fa4946f..011f220 100644 --- a/setting/BUILD.gn +++ b/setting/BUILD.gn @@ -32,7 +32,7 @@ shared_library("setting") { "${appexecfwk_lite_path}/frameworks/bundle_lite:bundle", "//base/powermgr/powermgr_lite/frameworks:powermgr", "//base/startup/syspara_lite/frameworks/parameter:parameter", - "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", + "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store:kv_store", "//foundation/distributedschedule/samgr_lite/samgr:samgr", "//foundation/graphic/surface", "//foundation/graphic/ui:lite_ui", -- Gitee