# Copyright (c) 2022 Huawei Device Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import("//arkcompiler/ets_frontend/es2panda/es2abc_config.gni") import("//ets_runtime/js_runtime_config.gni") print("root_out_dir=$root_out_dir") print("root_build_dir=$root_build_dir") print("root_gen_dir=$root_gen_dir") print("current_toolchain=$current_toolchain") print("host_toolchain=$host_toolchain") print("current_os=$current_os, current_cpu=$current_cpu") print("host_os=$host_os, host_cpu=$host_cpu") print("target_os=$target_os, target_cpu=$target_cpu") print() group("default") { deps = [ ":ets_frontend", ":ets_runtime", ] } group("ets_runtime") { deps = [ "//ets_runtime/ecmascript/js_vm:ark_js_vm" ] } group("ets_frontend") { deps = [ "//arkcompiler/ets_frontend/es2panda:es2panda", "//arkcompiler/ets_frontend/merge_abc:merge_abc", ] }