From 6643c6c3b5a9ee5b18e0cff56798204805750d09 Mon Sep 17 00:00:00 2001 From: zhoushilin Date: Mon, 9 May 2022 10:50:13 +0800 Subject: [PATCH] update kv_store path Signed-off-by: zhoushilin --- BUILD.gn | 6 +++--- kv_store | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) delete mode 120000 kv_store diff --git a/BUILD.gn b/BUILD.gn index 1657113..bdd7c78 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -9,14 +9,14 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and -# limitations under the License. +# limitations under the License. import("//build/lite/ndk/ndk.gni") group("utils") { deps = [ - "kv_store:kv_store", "os_dump:utils_os_dump", + "//foundation/distributeddatamgr/appdatamgr/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 = [ "kv_store/src:utils_kv_store" ] + deps = [ "//foundation/distributeddatamgr/appdatamgr/frameworks/native/kv_store/src:utils_kv_store" ] head_files = [ "//utils/native/lite/include/kv_store.h", "//utils/native/lite/include/utils_config.h", diff --git a/kv_store b/kv_store deleted file mode 120000 index 6a30b6a..0000000 --- a/kv_store +++ /dev/null @@ -1 +0,0 @@ -../../../foundation/distributeddatamgr/appdatamgr/frameworks/native/kv_store \ No newline at end of file -- Gitee