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# These are the targets to check headers for by default. The files in targets 17# matching these patterns (see "gn help label_pattern" for format) will have 18# their includes checked for proper dependencies when you run either 19# "gn check" or "gn gen --check". 20check_targets = [ "*" ] 21 22# These are the list of GN files that run exec_script. This whitelist exists 23# to force additional review for new uses of exec_script, which is strongly 24# discouraged except for gypi_to_gn calls. 25exec_script_whitelist = angle_dotfile_settings.exec_script_whitelist + 26 build_dotfile_settings.exec_script_whitelist + 27 [ 28 "//build/config/sysroot.gni", 29 "//build/config/win/BUILD.gn", 30 "//build/config/win/visual_studio_version.gni", 31 "//build/gn_helpers.py", 32 "//build_overrides/build.gni", 33 ] 34 35default_args = { 36 use_custom_libcxx = false 37 clang_use_chrome_plugins = true 38 build_angle_deqp_tests = true 39 use_sysroot = true 40} 41