diff --git a/bundle.json b/bundle.json index e3976629463ff93588a7afc29d9812a2a51ea5f9..17cce0ae6a7c323969898ffa939453b8266674c1 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 19b7c8d18e37cd45f4cd2d56397a31e15fc9cd91..ea42273c8bca5823992ad8116bd7cd8ee241c9e3 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 2917c76672a5801ff8d95048a1171d1621605f9a..a43d62f2166b67d19e01810d50259d82ae8cbb62 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"