From 7cf5161032bd225b2f8032478d5bbb4b72ac44b2 Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Sat, 23 Jul 2022 16:37:02 +0800 Subject: [PATCH] build:appdatamgr split to four code warehouse: relational_store,data_share,preferences,kv_store Signed-off-by: PaDaBoo --- ability_lite/ability_posix/BUILD.gn | 2 +- distributeddatamgr_lite/dbm_kv_store_hal/BUILD.gn | 2 +- distributeddatamgr_lite/kv_store_posix/BUILD.gn | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ability_lite/ability_posix/BUILD.gn b/ability_lite/ability_posix/BUILD.gn index 9624fd8b1..3a2386b5a 100755 --- a/ability_lite/ability_posix/BUILD.gn +++ b/ability_lite/ability_posix/BUILD.gn @@ -27,7 +27,7 @@ hcpptest_suite("ActsAbilityMgrTest") { "${appexecfwk_lite_path}/frameworks/bundle_lite:bundle", "//base/hiviewdfx/hilog_lite/frameworks/featured:hilog_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", ] if (enable_ohos_appexecfwk_feature_ability == true) { diff --git a/distributeddatamgr_lite/dbm_kv_store_hal/BUILD.gn b/distributeddatamgr_lite/dbm_kv_store_hal/BUILD.gn index 1a8b5527c..cc15951e5 100644 --- a/distributeddatamgr_lite/dbm_kv_store_hal/BUILD.gn +++ b/distributeddatamgr_lite/dbm_kv_store_hal/BUILD.gn @@ -19,7 +19,7 @@ hctest_suite("ActsDbmKvStoreTest") { include_dirs = [ "src", - "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/innerkits/dbm_kv_store/include", + "//foundation/distributeddatamgr/kv_store/interfaces/innerkits/dbm_kv_store/include", "//base/iot_hardware/peripheral/interfaces/kits", ] cflags = [ "-Wno-error" ] diff --git a/distributeddatamgr_lite/kv_store_posix/BUILD.gn b/distributeddatamgr_lite/kv_store_posix/BUILD.gn index c4bd45ba7..7d1573c37 100755 --- a/distributeddatamgr_lite/kv_store_posix/BUILD.gn +++ b/distributeddatamgr_lite/kv_store_posix/BUILD.gn @@ -19,11 +19,11 @@ hcpptest_suite("ActsKvStoreTest") { include_dirs = [ "src", - "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store/include", + "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store/include", "//third_party/bounds_checking_function/include", "//utils/native/lite/include", ] - deps = [ "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store:kv_store" ] + deps = [ "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store:kv_store" ] cflags = [ "-Wno-error" ] ldflags = [ "-lstdc++", -- GitLab