diff --git a/bundle.json b/bundle.json index 6bbeaf579859c02e49389b020b4ac9ac98fcfbc8..613ef60144c44de1913a7950e29121870ac8f66b 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 b14804fa7741d91320665bb8dea3a11ec9734f31..246975a8894fc806e388d7388d9a79b6e256baaf 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") {