From a968e7580a64d13d0293b69125eb34b41b71ec12 Mon Sep 17 00:00:00 2001 From: youbing54 Date: Wed, 14 Aug 2024 17:07:49 +0800 Subject: [PATCH 1/3] IssueNo: https://gitee.com/openharmony/build/issues/IAJZDI describe: Remove the feature whitelist of ace_deginenlite component Feature or Bugfix: Bugfix Binary Source:Yes Signed-off-by: youbing54 --- bundle.json | 4 +++- frameworks/targets/BUILD.gn | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/bundle.json b/bundle.json index 70f89a58..083b7659 100644 --- a/bundle.json +++ b/bundle.json @@ -15,7 +15,9 @@ "syscap": [ "SystemCapability.ArkUI.ArkUI.Lite" ], - "feature": [], + "feature": [ + "ace_engine_lite_feature_product_config = false" + ], "adapted_system_type": [ "mini","small" ], "rom": "521KB", "ram": "~82KB", diff --git a/frameworks/targets/BUILD.gn b/frameworks/targets/BUILD.gn index adb5ffb1..43d31f81 100644 --- a/frameworks/targets/BUILD.gn +++ b/frameworks/targets/BUILD.gn @@ -15,11 +15,11 @@ import("//build/lite/config/component/lite_component.gni") import("//foundation/arkui/ace_engine_lite/ace_lite.gni") declare_args() { - enable_ohos_ace_engine_lite_product_config = false + ace_engine_lite_feature_product_config = false } config("ace_lite_target_config") { - if (enable_ohos_ace_engine_lite_product_config) { + if (ace_engine_lite_feature_product_config) { defines = [ "ENABLE_OHOS_ACELITE_PRODUCT_CONFIG=1" ] } include_dirs = [ "$product_path/ace_lite_config" ] -- Gitee From af117b094e8a2b6808af75987e3d720295dfc4ba Mon Sep 17 00:00:00 2001 From: youbing54 Date: Fri, 16 Aug 2024 03:31:27 +0000 Subject: [PATCH 2/3] update bundle.json. Signed-off-by: youbing54 --- bundle.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle.json b/bundle.json index 083b7659..6ec9db20 100644 --- a/bundle.json +++ b/bundle.json @@ -16,7 +16,7 @@ "SystemCapability.ArkUI.ArkUI.Lite" ], "feature": [ - "ace_engine_lite_feature_product_config = false" + "ace_engine_lite_feature_product_config" ], "adapted_system_type": [ "mini","small" ], "rom": "521KB", -- Gitee From 19b398759e81196326a8008776297f52589d83a1 Mon Sep 17 00:00:00 2001 From: youbing54 Date: Sat, 17 Aug 2024 01:49:21 +0000 Subject: [PATCH 3/3] update bundle.json. Signed-off-by: youbing54 --- bundle.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle.json b/bundle.json index 6ec9db20..389eba04 100644 --- a/bundle.json +++ b/bundle.json @@ -15,7 +15,7 @@ "syscap": [ "SystemCapability.ArkUI.ArkUI.Lite" ], - "feature": [ + "features": [ "ace_engine_lite_feature_product_config" ], "adapted_system_type": [ "mini","small" ], -- Gitee