当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
7 Star 11 Fork 15

OpenHarmony/ark_js_runtime
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
js_runtime_config.gni 2.57 KB
一键复制 编辑 原始数据 按行查看 历史
weng-changcheng 提交于 2022-07-06 14:12 . Descriptor: ark hilog refactor
# Copyright (c) 2021 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.
if (!defined(ark_standalone_build)) {
ark_root = "//ark/runtime_core"
js_root = "//ark/js_runtime"
} else {
ark_root = "//runtime_core"
js_root = "//js_runtime"
}
third_party_gn_path = "//third_party"
compile_llvm_online = false
run_with_asan = false
enable_bytrace = true
enable_hitrace = true
enable_hilog = true
enable_dump_in_faultlog = true
asan_lib_path = "/usr/lib/llvm-10/lib/clang/10.0.0/lib/linux"
# For OpenHarmony build, always link with the static lib:
sdk_libc_secshared_dep =
"$third_party_gn_path/bounds_checking_function:libsec_static"
sdk_libc_secshared_config =
"$third_party_gn_path/bounds_checking_function:libsec_public_config"
# Generate file for a template and YAML data provided.
#
# Mandatory arguments:
# data_file -- YAML data full name
# template_file -- template full name
# output_file -- output file full name
# requires -- a list of scripts that provide data-querying API for templates
# extra_dependencies -- a list of files that should be considered as dependencies, must be lable
template("ark_gen_file") {
assert(defined(invoker.data_file), "data_file is required!")
assert(defined(invoker.template_file), "template_file is required!")
assert(defined(invoker.output_file), "output_file is required!")
requires = ""
if (defined(invoker.requires)) {
requires = string_join(",", rebase_path(invoker.requires, root_build_dir))
}
extra_dependencies = []
if (defined(invoker.extra_dependencies)) {
extra_dependencies += invoker.extra_dependencies
}
action("$target_name") {
script = "$ark_root/isa/gen.rb"
# rerun action when data file or template file update
inputs = [
invoker.template_file,
invoker.data_file,
]
outputs = [ invoker.output_file ]
args = [
"--template",
rebase_path(invoker.template_file, root_build_dir),
"--data",
rebase_path(invoker.data_file, root_build_dir),
"--require",
requires,
"--output",
rebase_path(outputs[0]),
]
deps = extra_dependencies
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony/ark_js_runtime.git
git@gitee.com:openharmony/ark_js_runtime.git
openharmony
ark_js_runtime
ark_js_runtime
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385