From 57f827c3f36924f06771f9e09ab0f975c601e689 Mon Sep 17 00:00:00 2001 From: ctw-ian Date: Tue, 13 Jun 2023 10:50:26 +0800 Subject: [PATCH] Change the abc generation template from ts2abc to es2abc Issue:https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/I7D0BG Signed-off-by: ctw-ian Change-Id: I2d21d6a05de8d3a5283048116685e4c17d29b71f --- interfaces/api/js/napi/backup_ext/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/api/js/napi/backup_ext/BUILD.gn b/interfaces/api/js/napi/backup_ext/BUILD.gn index 51072aae4..d9d3da333 100644 --- a/interfaces/api/js/napi/backup_ext/BUILD.gn +++ b/interfaces/api/js/napi/backup_ext/BUILD.gn @@ -11,11 +11,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//arkcompiler/ets_frontend/ts2panda/ts2abc_config.gni") +import("//arkcompiler/ets_frontend/es2panda/es2abc_config.gni") import("//build/ohos.gni") import("//foundation/filemanagement/app_file_service/backup.gni") -ts2abc_gen_abc("gen_backup_extension_ability_abc") { +es2abc_gen_abc("gen_backup_extension_ability_abc") { src_js = rebase_path("backup_extension_ability.js") dst_file = rebase_path(target_out_dir + "/backup_extension_ability.abc") in_puts = [ "backup_extension_ability.js" ] -- Gitee