From ff8def048dafc717e63110385e46c56795b3fe14 Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Mon, 25 Jul 2022 16:46:21 +0800 Subject: [PATCH] build:appdatamgr split to four code warehouse: relational_store,data_share,preferences,kv_store Signed-off-by: PaDaBoo --- BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 493f3f8..1087c6d 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -14,7 +14,7 @@ import("//build/lite/ndk/ndk.gni") group("utils") { - 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" ] if (ohos_kernel_type == "liteos_m") { deps += [ "file:file" ] @@ -25,7 +25,7 @@ ndk_lib("native_api") { if (ohos_kernel_type != "liteos_m") { lib_extension = ".so" } - deps = [ "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store:utils_kv_store" ] + deps = [ "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store:utils_kv_store" ] head_files = [ "//utils/native/lite/include/kv_store.h", "//utils/native/lite/include/utils_config.h", -- Gitee