From 97712ed85a75ac251a01a95322363c0a99b4a9f5 Mon Sep 17 00:00:00 2001 From: lijiahao Date: Thu, 8 Sep 2022 10:51:17 +0800 Subject: [PATCH] switch path deps on utils to commonlibrary Signed-off-by: lijiahao --- app/bundle.json | 2 +- app/demolink/BUILD.gn | 2 +- app/iothardware/BUILD.gn | 2 +- app/samgr/BUILD.gn | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/bundle.json b/app/bundle.json index 2f19a70..6070e3a 100755 --- a/app/bundle.json +++ b/app/bundle.json @@ -21,7 +21,7 @@ "ram": "", "deps": { "components": [ - "utils_base" + "c_utils" ], "third_party": [] }, diff --git a/app/demolink/BUILD.gn b/app/demolink/BUILD.gn index 48ce7ca..335702f 100644 --- a/app/demolink/BUILD.gn +++ b/app/demolink/BUILD.gn @@ -18,5 +18,5 @@ static_library("example_demolink") { "helloworld.c", ] - include_dirs = [ "//utils/native/lite/include" ] + include_dirs = [ "//commonlibrary/utils_lite/include" ] } diff --git a/app/iothardware/BUILD.gn b/app/iothardware/BUILD.gn index 564f1ec..4334430 100644 --- a/app/iothardware/BUILD.gn +++ b/app/iothardware/BUILD.gn @@ -15,7 +15,7 @@ static_library("led_example") { sources = [ "led_example.c" ] include_dirs = [ - "//utils/native/lite/include", + "//commonlibrary/utils_lite/include", "//kernel/liteos_m/kal/cmsis", "//base/iothardware/peripheral/interfaces/inner_api", ] diff --git a/app/samgr/BUILD.gn b/app/samgr/BUILD.gn index 13a1e66..b7ca571 100644 --- a/app/samgr/BUILD.gn +++ b/app/samgr/BUILD.gn @@ -25,7 +25,7 @@ static_library("example_samgr") { ] include_dirs = [ - "//utils/native/lite/include", + "//commonlibrary/utils_lite/include", "//kernel/liteos_m/components/cmsis", "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr", "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/communication/broadcast", -- Gitee