From 6a9a045346cbca570ce6c44cd6a0299f095855aa Mon Sep 17 00:00:00 2001 From: ctw-ian Date: Mon, 11 Jul 2022 11:16:53 +0800 Subject: [PATCH] Change abc generation template Use es2abc to generate abc file instead of ts2panda Signed-off-by: ctw-ian Change-Id: I21ef43cd4766e141ed08b57459670fdaba81f083 --- interfaces/kits/napi/file_access_ext_ability/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/kits/napi/file_access_ext_ability/BUILD.gn b/interfaces/kits/napi/file_access_ext_ability/BUILD.gn index c049a4c5..65148b2a 100644 --- a/interfaces/kits/napi/file_access_ext_ability/BUILD.gn +++ b/interfaces/kits/napi/file_access_ext_ability/BUILD.gn @@ -11,10 +11,10 @@ # 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") -ts2abc_gen_abc("gen_file_access_ext_ability_abc") { +es2abc_gen_abc("gen_file_access_ext_ability_abc") { src_js = rebase_path("file_access_ext_ability.js") dst_file = rebase_path(target_out_dir + "/file_access_ext_ability.abc") in_puts = [ "file_access_ext_ability.js" ] -- Gitee