From dbb9f33d54f7280893ea5c7ed32907bf953fbc9c Mon Sep 17 00:00:00 2001 From: zhuzhihui7 Date: Wed, 30 Jul 2025 15:16:25 +0800 Subject: [PATCH] fix include external Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/ICPTDQ Change-Id: I0e03c8f34d8ef6d7a525186442ee85ecef4f11f7 Signed-off-by: qianyong325 --- merge_abc/BUILD.gn | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/merge_abc/BUILD.gn b/merge_abc/BUILD.gn index a20f2b5607..38336a138c 100644 --- a/merge_abc/BUILD.gn +++ b/merge_abc/BUILD.gn @@ -40,10 +40,6 @@ protobuf_snapshot_generator_sources = [ config("panda_assembly_proto_public_config") { include_dirs = [ - "$ark_root/assembler", - "$ark_root/libpandabase", - "$ark_root/libpandabase/mem", - "$ark_root", "src", "$proto_out_dir", "../es2panda", @@ -182,6 +178,10 @@ ohos_source_set("assembly_proto_static") { external_deps += [ "hilog:libhilog" ] } } + external_deps += [ + "runtime_core:libarkbase_static", + "runtime_core:libarkassembler_static", + ] sources = proto_generated_header + proto_generated_source + protobuf_snapshot_generator_sources @@ -233,6 +233,8 @@ ohos_executable("merge_abc") { ] external_deps = [ "icu:static_icuuc", + "runtime_core:libarkbase_static", + "runtime_core:libarkassembler_static", sdk_libc_secshared_dep, ] if (!is_arkui_x) { -- Gitee