From 23d7f05f5cf83bbf189314bc71a0e0536c105837 Mon Sep 17 00:00:00 2001 From: Petrov Igor Date: Fri, 19 Jul 2024 14:43:35 +0300 Subject: [PATCH] [GN] Fix deps in ets2panda components Issue: #IAEA80 Testing: `OHOS CI` Signed-off-by: Petrov Igor --- bundle.json | 2 +- ets2panda/aot/BUILD.gn | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bundle.json b/bundle.json index 2ae193b381..4fb4930121 100644 --- a/bundle.json +++ b/bundle.json @@ -35,7 +35,7 @@ ], "inner_kits": [ { - "name": "//arkcompiler/ets_frontend/ets2panda/aot:es2panda" + "name": "//arkcompiler/ets_frontend/ets2panda/aot:es2panda_package" } ], "test": [ diff --git a/ets2panda/aot/BUILD.gn b/ets2panda/aot/BUILD.gn index b15d570129..298c381d68 100644 --- a/ets2panda/aot/BUILD.gn +++ b/ets2panda/aot/BUILD.gn @@ -14,6 +14,12 @@ import("//arkcompiler/runtime_core/static_core/ark_config.gni") import("//build/ohos.gni") +group("es2panda_package") { + if (enable_static_vm) { + deps = [ ":es2panda" ] + } +} + ohos_executable("es2panda") { sources = [ "main.cpp" ] -- Gitee