From a813f9eb26baaa9a8fa217670c627064ac4c4c05 Mon Sep 17 00:00:00 2001 From: hongtao Date: Tue, 26 Jul 2022 15:34:34 +0800 Subject: [PATCH] replace utils path to c_utils Signed-off-by: hongtao Change-Id: I249c7ebe320ee3934262f3b0f53e920247d43247 --- bundle.json | 2 +- libdmabufheap/BUILD.gn | 6 ++++-- libpurgeablemem/BUILD.gn | 6 ++++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/bundle.json b/bundle.json index e397662..17cce0a 100644 --- a/bundle.json +++ b/bundle.json @@ -13,7 +13,7 @@ "adapted_system_type": [ "standard" ], "deps": { "components": [ - "utils_base", + "c_utils", "hiviewdfx_hilog_native" ], "third_party": [] diff --git a/libdmabufheap/BUILD.gn b/libdmabufheap/BUILD.gn index 19b7c8d..ea42273 100644 --- a/libdmabufheap/BUILD.gn +++ b/libdmabufheap/BUILD.gn @@ -20,8 +20,10 @@ config("libdmabufheap_config") { ohos_shared_library("libdmabufheap") { sources = [ "src/dmabuf_alloc.c" ] include_dirs = [ "include" ] - deps = [ "//utils/native/base:utils" ] - external_deps = [ "hiviewdfx_hilog_native:libhilog" ] + external_deps = [ + "c_utils:utils", + "hiviewdfx_hilog_native:libhilog", + ] public_configs = [ ":libdmabufheap_config" ] subsystem_name = "utils" part_name = "utils_memory" diff --git a/libpurgeablemem/BUILD.gn b/libpurgeablemem/BUILD.gn index 2917c76..a43d62f 100644 --- a/libpurgeablemem/BUILD.gn +++ b/libpurgeablemem/BUILD.gn @@ -33,8 +33,10 @@ ohos_shared_library("libpurgeablemem") { "cpp/src/ux_page_table.cpp", ] include_dirs = [ "include" ] - deps = [ "//utils/native/base:utils" ] - external_deps = [ "hiviewdfx_hilog_native:libhilog" ] + external_deps = [ + "c_utils:utils", + "hiviewdfx_hilog_native:libhilog", + ] public_configs = [ ":libpurgeable_config" ] subsystem_name = "utils" part_name = "utils_memory" -- Gitee