blob: 0079aaa4c46c25c4ca334b533194797c71f7b7a1 [file] [log] [blame]
Henrik Kjellander41177752015-04-09 15:36:28 +02001# Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
kjellanderad6f6462016-11-29 06:35:14 -08009import("//build/dotfile_settings.gni")
10
Henrik Kjellander41177752015-04-09 15:36:28 +020011# The location of the build configuration file.
12buildconfig = "//build/config/BUILDCONFIG.gn"
13
14# The secondary source root is a parallel directory tree where
15# GN build files are placed when they can not be placed directly
16# in the source tree, e.g. for third party source trees.
17secondary_source = "//build/secondary/"
18
19# These are the targets to check headers for by default. The files in targets
20# matching these patterns (see "gn help label_pattern" for format) will have
21# their includes checked for proper dependencies when you run either
22# "gn check" or "gn gen --check".
mbonadei7d9a55b2017-06-01 13:01:48 -070023check_targets = [ "//webrtc/*" ]
Henrik Kjellander41177752015-04-09 15:36:28 +020024
25# These are the list of GN files that run exec_script. This whitelist exists
26# to force additional review for new uses of exec_script, which is strongly
27# discouraged except for gypi_to_gn calls.
mbonadeif3f30c72016-12-30 01:04:34 -080028exec_script_whitelist = build_dotfile_settings.exec_script_whitelist
mbonadei96606272017-03-03 19:41:59 -080029
30default_args = {
31 # Webrtc does not support component builds because we are not using the
32 # template "component" but we rely directly on "rtc_static_library" and
33 # "rtc_shared_library". This means that we cannot use the chromium default
34 # value for this argument.
35 # This also means that the user can override this value using --args or
36 # the args.gn file but this setting will be ignored because we don't support
37 # component builds.
38 is_component_build = false
erikchen0ff78002017-07-13 09:03:13 -070039
40 mac_sdk_min = "10.11"
mbonadei96606272017-03-03 19:41:59 -080041}