• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2021-2022 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("//arkcompiler/toolchain/toolchain.gni")
15
16config("hiviewdfx_config") {
17  defines = []
18  if (enable_dump_in_faultlog) {
19    defines += [ "ENABLE_DUMP_IN_FAULTLOG" ]
20  }
21  if (enable_bytrace) {
22    defines += [ "ENABLE_BYTRACE" ]
23    cflags_cc = [ "-Wno-gnu-zero-variadic-macro-arguments" ]
24  }
25  if (enable_hitrace) {
26    defines += [ "ENABLE_HITRACE" ]
27  }
28  if (enable_hilog) {
29    defines += [ "ENABLE_HILOG" ]
30  }
31
32  include_dirs = [ "$hilog_root/include" ]
33}
34
35config("ark_platform_config") {
36  configs = [ ":hiviewdfx_config" ]
37  defines = []
38  if (is_ohos) {
39    defines += [
40      "OHOS_PLATFORM",
41      "UNIX_PLATFORM",
42    ]
43  } else if (is_linux) {
44    defines += [
45      "LINUX_PLATFORM",
46      "UNIX_PLATFORM",
47    ]
48  } else if (is_mingw) {
49    defines += [ "WINDOWS_PLATFORM" ]
50  } else if (target_os == "android") {
51    if (!ark_standalone_build) {
52      defines += [
53        "ANDROID_PLATFORM",
54        "UNIX_PLATFORM",
55      ]
56    } else {
57      defines += [ "UNIX_PLATFORM" ]
58    }
59  } else if (target_os == "ios") {
60    defines += [
61      "UNIX_PLATFORM",
62      "IOS_PLATFORM",
63    ]
64  } else if (is_mac) {
65    defines += [
66      "MAC_PLATFORM",
67      "UNIX_PLATFORM",
68    ]
69  } else {
70    defines += [ "UNIX_PLATFORM" ]
71  }
72}
73
74config("ark_toolchain_common_config") {
75  configs = [
76    ":ark_platform_config",
77    ":ark_toolchain_public_config",
78    ":hiviewdfx_config",
79  ]
80
81  defines = [ "PANDA_ENABLE_LTO" ]
82  cflags_cc = [
83    "-Wall",
84    "-Wshadow",
85    "-Werror",
86    "-Wextra",
87    "-pedantic",
88    "-Wno-invalid-offsetof",
89    "-Wno-gnu-statement-expression",
90    "-pipe",
91    "-Wdate-time",
92    "-funwind-tables",
93    "-fasynchronous-unwind-tables",
94    "-Wformat=2",
95  ]
96
97  if (is_linux) {
98    defines += [
99      "PANDA_TARGET_UNIX",
100      "PANDA_TARGET_LINUX",
101      "PANDA_USE_FUTEX",
102    ]
103  } else if (is_mingw) {
104    cflags_cc += [
105      "-std=c++17",
106      "-Wno-ignored-attributes",
107    ]
108    defines += [
109      "PANDA_TARGET_WINDOWS",
110      "_CRTBLD",
111      "__LIBMSVCRT__",
112    ]
113  } else if (is_mac) {
114    defines += [
115      "PANDA_TARGET_UNIX",
116      "PANDA_TARGET_MACOS",
117    ]
118  } else if (target_os == "android") {
119    defines += [
120      "PANDA_TARGET_ANDROID",
121      "PANDA_TARGET_UNIX",
122      "PANDA_USE_FUTEX",
123    ]
124    if (!ark_standalone_build) {
125      defines += [ "ENABLE_ANLOG" ]
126    }
127  } else if (target_os == "ios") {
128    defines += [
129      "PANDA_TARGET_UNIX",
130      "PANDA_TARGET_IOS",
131    ]
132  } else {
133    defines += [
134      "PANDA_TARGET_UNIX",
135      "PANDA_USE_FUTEX",
136    ]
137    if (!is_standard_system && (current_cpu != "arm" || is_wearable_product)) {
138      defines += [ "PANDA_TARGET_MOBILE" ]
139    }
140  }
141
142  if (current_cpu == "arm") {
143    defines += [
144      "PANDA_TARGET_ARM32_ABI_SOFT=1",
145      "PANDA_TARGET_ARM32",
146      "PANDA_TARGET_32",
147    ]
148  } else if (current_cpu == "arm64") {
149    defines += [
150      "PANDA_TARGET_ARM64",
151      "PANDA_TARGET_64",
152      "PANDA_ENABLE_GLOBAL_REGISTER_VARIABLES",
153      "PANDA_USE_32_BIT_POINTER",
154    ]
155  } else if (current_cpu == "x86") {
156    defines += [ "PANDA_TARGET_X86" ]
157  } else if (current_cpu == "amd64" || current_cpu == "x64" ||
158             current_cpu == "x86_64") {
159    defines += [
160      "PANDA_TARGET_64",
161      "PANDA_TARGET_AMD64",
162      "PANDA_USE_32_BIT_POINTER",
163    ]
164  }
165
166  if (is_debug) {
167    cflags_cc += [
168      "-O0",
169      "-ggdb3",
170    ]
171  } else {
172    defines += [ "NDEBUG" ]
173  }
174}
175
176config("ark_toolchain_public_config") {
177  defines = []
178
179  # debug is not compatible with ios for now
180  if (!is_mingw && !is_mac && target_os != "ios") {
181    defines += [
182      "ECMASCRIPT_SUPPORT_CPUPROFILER",
183      "ECMASCRIPT_SUPPORT_HEAPPROFILER",
184      "ECMASCRIPT_SUPPORT_HEAPSAMPLING",
185      "ECMASCRIPT_SUPPORT_SNAPSHOT",
186      "ECMASCRIPT_SUPPORT_DEBUGGER",
187      "ECMASCRIPT_SUPPORT_TRACING",
188    ]
189  } else if (target_os == "android") {
190    defines += [
191      "ECMASCRIPT_SUPPORT_CPUPROFILER",
192      "ECMASCRIPT_SUPPORT_DEBUGGER",
193      "ECMASCRIPT_SUPPORT_TRACING",
194    ]
195  }
196
197  include_dirs = [ "." ]
198}
199
200# ecmascript unit testcase config
201config("toolchain_test_config") {
202  visibility = [
203    "./test/fuzztest/*",
204    "./tooling/test/*",
205    "./websocket/test/*",
206  ]
207
208  configs = [ ":ark_toolchain_common_config" ]
209
210  if (!is_mac) {
211    ldflags = [ "-Wl,-rpath=\$ORIGIN/" ]
212  }
213}
214
215group("ark_toolchain_packages") {
216  deps = []
217  deps += [
218    "./inspector:ark_debugger",
219    "./inspector:connectserver_debugger",
220    "./tooling:libark_ecma_debugger",
221    "./tooling/client:libark_client",
222    "./tooling/client/ark_cli:arkdb",
223    "./tooling/client/ark_multi:ark_multi",
224  ]
225}
226
227group("ark_toolchain_unittest") {
228  testonly = true
229  deps = []
230  deps += [
231    "./tooling/test:unittest",
232    "./websocket/test:unittest",
233  ]
234  if (is_ohos && is_standard_system) {
235    deps += [ "./test/fuzztest:fuzztest" ]
236  }
237}
238
239group("ark_toolchain_host_unittest") {
240  testonly = true
241  deps = []
242
243  # js unittest
244  deps += [
245    "./tooling/test:host_unittest",
246    "./websocket/test:host_unittest",
247  ]
248}
249
250group("ark_js_host_unittest") {
251  testonly = true
252  deps = [
253    "//arkcompiler/ets_runtime:ark_runtime_host_unittest",
254    "//arkcompiler/toolchain:ark_toolchain_host_unittest",
255  ]
256}
257