From 1680ccba6137ed0ca3c6a7bddcfc6d4f0779959f Mon Sep 17 00:00:00 2001 From: xwx1135370 Date: Tue, 17 Dec 2024 14:22:50 +0800 Subject: [PATCH] =?UTF-8?q?[Bug]:=20c=5Futils=E9=83=A8=E4=BB=B6=E5=8C=96?= =?UTF-8?q?=E6=A3=80=E6=9F=A5=E5=91=8A=E8=AD=A6=E6=B8=85=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit issue:https://gitee.com/openharmony/build/issues/IBB4XA?from=project-issue Signed-off-by: xwx1135370 --- bundle.json | 2 +- tests/unit-core/BUILD.gn | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bundle.json b/bundle.json index 6bbeaf57..613ef601 100644 --- a/bundle.json +++ b/bundle.json @@ -52,7 +52,7 @@ "rom": "", "ram": "", "deps": { - "components": [], + "components": [ "c_utils" ], "third_party": [] }, "build": { diff --git a/tests/unit-core/BUILD.gn b/tests/unit-core/BUILD.gn index b14804fa..246975a8 100755 --- a/tests/unit-core/BUILD.gn +++ b/tests/unit-core/BUILD.gn @@ -18,7 +18,6 @@ import("//third_party/jerryscript/tests/test_helper.gni") host_unittest_action("TddTest") { module_out_path = module_output_path include_dirs = [ - "//commonlibrary/c_utils/base/include", "${core_path}/include", "${core_path}/api", "${core_path}/debugger", @@ -55,7 +54,6 @@ host_unittest_action("TddTest") { "//commonlibrary/utils_lite/include", "//third_party/googletest/googletest/include/gtest", "//third_party/googletest/include", - "//commonlibrary/c_utils/base/include", "//third_party/node/src", ] configs = [ "//third_party/bounds_checking_function:libsec_public_config" ] @@ -145,6 +143,7 @@ host_unittest_action("TddTest") { "test-typedarray.cpp", "test-unicode.cpp", ] + external_deps = [ "c_utils:utils" ] } group("jerry_tdd_test") { -- Gitee