From 86460f46b1dac7cd735ed9e19a6aecc952d3a1fe Mon Sep 17 00:00:00 2001 From: huangyuchen Date: Mon, 26 Jun 2023 09:46:50 +0800 Subject: [PATCH] Adapt gn files to the change in `build/rust/tests:cxx_cppdeps`. Issue:I7FX34 Test:UT Signed-off-by: huangyuchen Change-Id: I184dff72f751a7838132aa730540d886c8cecac3 --- base/BUILD.gn | 3 ++- bundle.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/base/BUILD.gn b/base/BUILD.gn index e2e2a26..e60e663 100644 --- a/base/BUILD.gn +++ b/base/BUILD.gn @@ -202,9 +202,10 @@ if (host_os == "linux" && !is_asan) { "${target_gen_dir}", "//third_party/rust/crates/cxx/include", ] + deps = [ ":cxx_rust_gen", - "//build/rust/tests:cxx_cppdeps", + "//third_party/rust/cxx:cxx_cppdeps", ] public_deps = [ "//third_party/bounds_checking_function:libsec_shared" ] diff --git a/bundle.json b/bundle.json index 19d708d..8121c89 100644 --- a/bundle.json +++ b/bundle.json @@ -19,7 +19,8 @@ "features":[ "c_utils_feature_coverage = false" ], "deps": { "components": [ - "hilog" + "hilog", + "common" ], "third_party": [ "bounds_checking_function" -- Gitee