From ddb3cb929bcf56769881969a420be32b410ed765 Mon Sep 17 00:00:00 2001 From: lhc Date: Thu, 14 Aug 2025 09:13:39 +0800 Subject: [PATCH] Fix the arkui compilation problem Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/ICSUN9?from=project-issue Signed-off-by: lhc Change-Id: I5aeaa41c5a7cca1bf1eed1c594647a2a32d76673 --- common_components/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_components/BUILD.gn b/common_components/BUILD.gn index c7c3dba5e4..c3e37a4fe4 100755 --- a/common_components/BUILD.gn +++ b/common_components/BUILD.gn @@ -514,7 +514,7 @@ ohos_shared_library("libark_common_components_fuzz_test") { if (!is_arkui_x) { external_deps += [ "runtime_core:libarkfile_runtime_static" ] } else { - deps += [ "$ark_root/libpandafile:libarkfile_runtime_static" ] + deps = [ "$ark_root/libpandafile:libarkfile_runtime_static" ] } part_name = "ets_runtime" -- Gitee