Revert "Upgrade NodeJS binary to v16.13.0"
[platform/framework/web/chromium-efl.git] / third_party / angle / .gn
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 #
5 # This file is used when gn runs in this directory (or a lower directory
6 # and searching upward ends here).  See "gn help dotfile."
7 # As a result this file will only affect stand-alone ANGLE builds,
8 # not chromium builds.
9
10 import("//build/dotfile_settings.gni")
11 import("//dotfile_settings.gni")
12
13 # Location of the build configuration file.
14 buildconfig = "//build/config/BUILDCONFIG.gn"
15
16 # The python interpreter to use by default. On Windows, this will look
17 # for python3.exe and python3.bat.
18 script_executable = "python3"
19
20 # These are the targets to check headers for by default. The files in targets
21 # matching these patterns (see "gn help label_pattern" for format) will have
22 # their includes checked for proper dependencies when you run either
23 # "gn check" or "gn gen --check".
24 check_targets = [ "*" ]
25
26 # These are the list of GN files that run exec_script. This allowlist exists
27 # to force additional review for new uses of exec_script, which is strongly
28 # discouraged except for gypi_to_gn calls.
29 exec_script_whitelist = angle_dotfile_settings.exec_script_whitelist +
30                         build_dotfile_settings.exec_script_whitelist +
31                         [
32                           "//build/config/sysroot.gni",
33                           "//build/config/win/BUILD.gn",
34                           "//build/config/win/visual_studio_version.gni",
35                           "//build/gn_helpers.py",
36                           "//build_overrides/build.gni",
37                         ]
38
39 default_args = {
40   clang_use_chrome_plugins = true
41   build_angle_deqp_tests = true
42   use_sysroot = true
43
44   # Saves on importing extra dependencies and ANGLE doesn't use JS.
45   enable_js_protobuf = false
46
47   # Saves on importing extra dependencies and ANGLE doesn't use Rust.
48   enable_rust = false
49
50   # Disable location tags in isolates.
51   tests_have_location_tags = false
52
53   # Use base level API level 29 support for AHardwareBuffer ANGLE tests.
54   android32_ndk_api_level = 29
55   android64_ndk_api_level = 29
56 }