From 174ea7717815e3937fd876cc1285dda6e40cd1d5 Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Mon, 13 Jun 2022 09:51:12 +0800 Subject: [PATCH 1/2] =?UTF-8?q?appdatamgr=E4=BB=93=E9=83=A8=E4=BB=B6?= =?UTF-8?q?=E5=8F=8A=E7=9B=AE=E5=BD=95=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: PaDaBoo --- BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index bdd7c78..d2f051a 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -16,7 +16,7 @@ import("//build/lite/ndk/ndk.gni") group("utils") { deps = [ "os_dump:utils_os_dump", - "//foundation/distributeddatamgr/appdatamgr/frameworks/native/kv_store:kv_store", + "//foundation/distributeddatamgr/appdatamgr/kv_store/frameworks/native/kv_store:kv_store", ] if (ohos_kernel_type == "liteos_m") { @@ -28,7 +28,7 @@ ndk_lib("native_api") { if (ohos_kernel_type != "liteos_m") { lib_extension = ".so" } - deps = [ "//foundation/distributeddatamgr/appdatamgr/frameworks/native/kv_store/src:utils_kv_store" ] + deps = [ "//foundation/distributeddatamgr/appdatamgr/kv_store/frameworks/native/kv_store/src:utils_kv_store" ] head_files = [ "//utils/native/lite/include/kv_store.h", "//utils/native/lite/include/utils_config.h", -- Gitee From 55558cfd6dc64bb7051368de6f35e19f85d71999 Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Fri, 17 Jun 2022 12:16:54 +0800 Subject: [PATCH 2/2] =?UTF-8?q?appdatamgr=E4=BB=93=E9=83=A8=E4=BB=B6?= =?UTF-8?q?=E5=8F=8A=E7=9B=AE=E5=BD=95=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: PaDaBoo --- BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index b4f814f..493f3f8 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/frameworks/native/kv_store:kv_store" ] + deps = [ "//foundation/distributeddatamgr/appdatamgr/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/frameworks/native/kv_store/src:utils_kv_store" ] + deps = [ "//foundation/distributeddatamgr/appdatamgr/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