developtools_ace_js2bundle/BUILD.gn
chengongping cd2928c44c chengongping@huawei.com
Signed-off-by: chengongping <chengongping@huawei.com>
Change-Id: I22e687cb2dbdf09fd2914240344b49eb1e5b219f
2021-12-21 17:23:12 +08:00

143 lines
4.4 KiB
Plaintext

# 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.
import("//build/ohos.gni")
import("//build/ohos/ace/ace.gni")
import("//foundation/ace/ace_engine/ace_config.gni")
ace_loader_lib_dir =
get_label_info(":build_ace_loader_library", "target_out_dir") + "/lib"
action("build_ace_loader_library") {
script = "build_ace_loader_library.py"
depfile = "$target_gen_dir/$target_name.d"
outputs = [ ace_loader_lib_dir ]
_ace_loader_dir = "ace-loader"
_module_source_js = _ace_loader_dir + "/module-source.js"
if (is_standard_system) {
_ace_config_dir = "ace-loader"
} else {
_ace_config_dir = "//prebuilts/ace-toolkit/ace-loader/linux-x64"
}
_babel_js = _ace_config_dir + "/node_modules/@babel/cli/bin/babel.js"
_babel_config_js = _ace_config_dir + "/babel.config.js"
_uglify_source_js = _ace_config_dir + "/uglify-source.js"
inputs = [
_babel_config_js,
_babel_js,
_module_source_js,
_uglify_source_js,
]
# different host platform nodejs tool directory
if (host_os == "linux") {
if (is_standard_system) {
nodejs_path = "//prebuilts/build-tools/common/nodejs/node-v12.18.4-linux-x64/bin/node"
} else {
nodejs_path =
"//prebuilts/ace-toolkit/nodejs/node-v12.18.4-linux-x64/bin/node"
}
} else if (host_os == "mac") {
if (is_standard_system) {
nodejs_path = "//prebuilts/build-tools/common/nodejs/node-v12.18.4-darwin-x64/bin/node"
} else {
nodejs_path =
"//prebuilts/ace-toolkit/nodejs/node-v12.18.4-darwin-x64/bin/node"
}
} else {
assert(false, "Unsupported host_os: $host_os")
}
args = [
"--depfile",
rebase_path(depfile, root_build_dir),
"--node",
rebase_path(nodejs_path, root_build_dir),
"--babel-js",
rebase_path(_babel_js, root_build_dir),
"--weex-loader-src-dir",
rebase_path("//third_party/weex-loader/src", root_build_dir),
"--ace-loader-src-dir",
rebase_path(_ace_loader_dir + "/src", root_build_dir),
"--babel-config-js",
rebase_path(_babel_config_js, root_build_dir),
"--module-source-js",
rebase_path(_module_source_js, root_build_dir),
"--uglify-source-js",
rebase_path(_uglify_source_js, root_build_dir),
"--output-dir",
rebase_path(ace_loader_lib_dir, root_build_dir),
]
}
ace_loader_sources = [
"ace-loader/.npmignore",
"ace-loader/babel.config.js",
"ace-loader/index.js",
"ace-loader/main.product.js",
"ace-loader/npm-install.js",
"ace-loader/package-lock.json",
"ace-loader/package.json",
"ace-loader/sample",
"ace-loader/webpack.lite.config.js",
"ace-loader/webpack.rich.config.js",
]
ohos_copy("ace_loader") {
sources = ace_loader_sources
outputs = [ target_out_dir + "/$target_name/{{source_file_part}}" ]
module_source_dir = target_out_dir + "/$target_name/"
module_install_name = ""
license_file = "//third_party/parse5/LICENSE"
}
ohos_copy("ace_loader_library") {
deps = [ ":build_ace_loader_library" ]
sources = [ ace_loader_lib_dir ]
outputs = [ target_out_dir + "/$target_name" ]
module_source_dir = target_out_dir + "/$target_name"
module_install_name = ""
license_file = "//third_party/weex-loader/NOTICE"
}
ace_loader_dir =
get_label_info(":ace_loader", "target_out_dir") + "/ace_loader_ark"
ohos_copy("ace_loader_ark") {
sources = ace_loader_sources
outputs = [ target_out_dir + "/$target_name/{{source_file_part}}" ]
license_file = "//third_party/parse5/LICENSE"
}
ohos_copy("ace_loader_ark_hap") {
deps = [
":ace_loader",
":ace_loader_ark",
":build_ace_loader_library",
]
sources = [ ace_loader_lib_dir ]
outputs = [ ace_loader_dir + "/lib" ]
license_file = "//third_party/parse5/LICENSE"
}
ohos_copy("ace_loader_node_modules") {
deps = [ ":ace_loader_ark_hap" ]
sources = [ "//developtools/ace-js2bundle/ace-loader/node_modules" ]
outputs = [ ace_loader_dir + "/node_modules" ]
license_file = "//third_party/parse5/LICENSE"
}