[WRTjs] Enable WRTjs
[platform/framework/web/chromium-efl.git] / v8 / .gn
1 # This file is used by the GN meta build system to find the root of the source
2 # tree and to set startup options. For documentation on the values set in this
3 # file, run "gn help dotfile" at the command line.
4
5 import("//build/dotfile_settings.gni")
6
7 # The location of the build configuration file.
8 buildconfig = "//build/config/BUILDCONFIG.gn"
9
10 # The python interpreter to use by default. On Windows, this will look
11 # for python3.exe and python3.bat.
12 script_executable = "python3"
13
14 # These are the targets to check headers for by default. The files in targets
15 # matching these patterns (see "gn help label_pattern" for format) will have
16 # their includes checked for proper dependencies when you run either
17 # "gn check" or "gn gen --check".
18 no_check_targets = [
19   "//:cppgc_base",
20   "//:v8_internal_headers",
21   "//src/inspector:inspector",
22   "//test/cctest:cctest_sources",  # 15 errors
23   "//test/unittests:inspector_unittests_sources",  # 2 errors
24   "//third_party/icu:*",
25 ]
26
27 default_args = {
28   # Disable rust dependencies.
29   enable_rust = false
30 }
31
32 # These are the list of GN files that run exec_script. This whitelist exists
33 # to force additional review for new uses of exec_script, which is strongly
34 # discouraged except for gypi_to_gn calls.
35 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist +
36                         [ "//build_overrides/build.gni" ]