From 514bdb0766b91d7ba354f396441b17fe58607c94 Mon Sep 17 00:00:00 2001 From: hongtao Date: Tue, 26 Jul 2022 15:37:13 +0800 Subject: [PATCH] replace utils path to c_utils Signed-off-by: hongtao Change-Id: Ie19d7bb3ca1d9d578b1e2a4cb6cd510c21473b61 --- BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 7a0697c..7db4065 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -32,7 +32,7 @@ config("qjs_inner_config") { config("qjs_debug_config") { include_dirs = [ "." ] cflags = [ "-DENABLE_JS_DEBUG" ] - include_dirs += [ "//utils/native/base/include" ] + include_dirs += [ "//commonlibrary/c_utils/base/include" ] } qjs_sources = [ @@ -52,7 +52,7 @@ ohos_static_library("qjs_debugger") { ] external_deps = [] if (!is_wearable_product) { - external_deps += [ "utils_base:utils" ] + external_deps += [ "c_utils:utils" ] } if (is_standard_system) { external_deps += [ "hiviewdfx_hilog_native:libhilog" ] -- Gitee