From f4d4f182e25eb14da9e3c8ea0068d0226fcc0053 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A5=88=E6=84=BF?= Date: Mon, 7 Jul 2025 15:13:23 +0800 Subject: [PATCH] Remove third-party header dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue:https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/ICKHVQ Signed-off-by: chenlong --- ets2panda/BUILD.gn | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ets2panda/BUILD.gn b/ets2panda/BUILD.gn index 311fc82fac..6d624c5ea5 100644 --- a/ets2panda/BUILD.gn +++ b/ets2panda/BUILD.gn @@ -29,13 +29,15 @@ config("libes2panda_public_config") { include_dirs = [ "$target_gen_dir", "$target_gen_dir/include", - "//third_party/icu/icu4c/source/common", - "//third_party/icu/icu4c/source/i18n", - "//third_party/icu/icu4c/source", "$ark_es2panda_root", ] if (ark_standalone_build || ark_static_standalone_build) { - include_dirs += [ "$target_gen_dir/generated" ] + include_dirs += [ + "$target_gen_dir/generated", + "//third_party/icu/icu4c/source/common", + "//third_party/icu/icu4c/source/i18n", + "//third_party/icu/icu4c/source", + ] } } -- Gitee