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 10import("//build/dotfile_settings.gni") 11import("//dotfile_settings.gni") 12 13# Location of the build configuration file. 14buildconfig = "//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. 18script_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". 24check_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. 29exec_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 39default_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 # Disable location tags in isolates. 48 tests_have_location_tags = false 49 50 # Use base level API level 29 support for AHardwareBuffer ANGLE tests. 51 android32_ndk_api_level = 29 52 android64_ndk_api_level = 29 53} 54