From f15b44a0177eb6b722dba277749a59bc349c28b8 Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Sat, 23 Jul 2022 16:14:19 +0800 Subject: [PATCH] build:appdatamgr split to four code warehouse: relational_store,data_share,preferences,kv_store Signed-off-by: PaDaBoo --- lite/BUILD.gn | 2 +- test/unittest/app_spawn_lite_test/BUILD.gn | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lite/BUILD.gn b/lite/BUILD.gn index 9e3d9556..83cdb878 100644 --- a/lite/BUILD.gn +++ b/lite/BUILD.gn @@ -61,7 +61,7 @@ executable("appspawn") { "//base/startup/init_lite/interfaces/innerkits:libbegetutil", "//build/lite/config/component/cJSON:cjson_shared", "//foundation/communication/ipc/interfaces/innerkits/c/ipc:ipc_single", - "//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", "//third_party/bounds_checking_function:libsec_shared", ] diff --git a/test/unittest/app_spawn_lite_test/BUILD.gn b/test/unittest/app_spawn_lite_test/BUILD.gn index 1594e40b..cc9c38e0 100644 --- a/test/unittest/app_spawn_lite_test/BUILD.gn +++ b/test/unittest/app_spawn_lite_test/BUILD.gn @@ -52,7 +52,7 @@ unittest("AppSpawnLiteTest") { "//base/startup/init_lite/interfaces/innerkits:libbegetutil", "//build/lite/config/component/cJSON:cjson_shared", "//foundation/communication/ipc/interfaces/innerkits/c/ipc:ipc_single", - "//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", "//third_party/bounds_checking_function:libsec_shared", ] -- Gitee