blob: 187094d60ae3e90a0771e017bdddad42926c6ab3 [file] [log] [blame]
Frank Henigmand0ef13a2017-08-28 22:53:24 -04001# 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
Tobin Ehlis9b1462a2018-05-21 16:40:57 -060010import("//build/dotfile_settings.gni")
Geoff Lang66ae5312019-04-01 16:35:53 -040011import("//dotfile_settings.gni")
Jamie Madill7b7ada62018-02-05 14:49:15 -050012
Frank Henigmand0ef13a2017-08-28 22:53:24 -040013# Location of the build configuration file.
14buildconfig = "//build/config/BUILDCONFIG.gn"
15
Frank Henigmand0ef13a2017-08-28 22:53:24 -040016# 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".
Jamie Madillab2bfa82019-01-15 19:06:47 -050020check_targets = [ "*" ]
Frank Henigmand0ef13a2017-08-28 22:53:24 -040021
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.
Tobin Ehlis9b1462a2018-05-21 16:40:57 -060025exec_script_whitelist = angle_dotfile_settings.exec_script_whitelist +
Frank Henigmana7f97a22018-08-21 00:04:05 -040026 build_dotfile_settings.exec_script_whitelist +
27 [
Jamie Madill7b7ada62018-02-05 14:49:15 -050028 "//build/config/sysroot.gni",
29 "//build/config/win/BUILD.gn",
30 "//build/config/win/visual_studio_version.gni",
31 "//build/gn_helpers.py",
Geoff Lang66ae5312019-04-01 16:35:53 -040032 "//build_overrides/build.gni",
Jamie Madill7b7ada62018-02-05 14:49:15 -050033 ]
Frank Henigmand0ef13a2017-08-28 22:53:24 -040034
35default_args = {
36 use_custom_libcxx = false
Jamie Madillab2bfa82019-01-15 19:06:47 -050037 clang_use_chrome_plugins = true
Frank Henigmand0ef13a2017-08-28 22:53:24 -040038 build_angle_deqp_tests = true
Tobin Ehlis9d4277b2018-05-21 16:22:22 -060039 use_sysroot = true
Frank Henigmand0ef13a2017-08-28 22:53:24 -040040}