• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2023 Huawei Device Co., Ltd.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6#     http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14import("//build/ohos.gni")
15import("//build/ohos/ace/ace.gni")
16import("//foundation/arkui/ace_engine/ace_config.gni")
17
18parse5_lib_dir =
19    get_label_info(":build_parse5_library", "target_out_dir") + "/parse"
20_parse5_project_dir = "//third_party/parse5/packages/parse5"
21
22action("build_parse5_library") {
23  script = "build_parse5.py"
24  depfile = "$target_gen_dir/$target_name.d"
25  outputs = [ parse5_lib_dir ]
26
27  _tsc_js = _parse5_project_dir + "/node_modules/typescript/bin/tsc"
28  _uglify_source_js = _parse5_project_dir + "/uglify-source.js"
29
30  inputs = [
31    _tsc_js,
32    _uglify_source_js,
33  ]
34
35  nodejs_path = "//prebuilts/build-tools/common/nodejs/current/bin/node"
36
37  args = [
38    "--depfile",
39    rebase_path(depfile, root_build_dir),
40    "--node",
41    rebase_path(nodejs_path, root_build_dir),
42    "--tsc-js",
43    rebase_path(_tsc_js, root_build_dir),
44    "--parse5-project",
45    rebase_path(_parse5_project_dir, root_build_dir),
46    "--parse5-output-dir",
47    rebase_path(parse5_lib_dir, root_build_dir),
48    "--uglify-source-js",
49    rebase_path(_uglify_source_js, root_build_dir),
50  ]
51}
52
53ohos_copy("parse5") {
54  deps = [ ":build_parse5_library" ]
55  sources = [ parse5_lib_dir ]
56  outputs = [ target_out_dir + "/$target_name" ]
57  module_install_name = "parse"
58  subsystem_name = "thirdparty"
59  part_name = "parse5"
60  license_file = "//third_party/parse5/LICENSE"
61}
62
63ace_loader_ark_dir = get_label_info("//developtools/ace_js2bundle:ace_loader",
64                                    "target_out_dir") + "/ace_loader_ark"
65
66ohos_copy("parse5_ark_hap") {
67  deps = [
68    ":build_parse5_library",
69    ":parse5",
70    "//developtools/ace_js2bundle:ace_loader_ark_hap",
71  ]
72  sources = [ parse5_lib_dir ]
73  outputs = [ ace_loader_ark_dir + "/lib/parse" ]
74}
75