Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 1 | # 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 | |
| 9 | # The location of the build configuration file. |
| 10 | buildconfig = "//build/config/BUILDCONFIG.gn" |
| 11 | |
| 12 | # The secondary source root is a parallel directory tree where |
| 13 | # GN build files are placed when they can not be placed directly |
| 14 | # in the source tree, e.g. for third party source trees. |
| 15 | secondary_source = "//build/secondary/" |
| 16 | |
| 17 | # These are the targets to check headers for by default. The files in targets |
| 18 | # matching these patterns (see "gn help label_pattern" for format) will have |
| 19 | # their includes checked for proper dependencies when you run either |
| 20 | # "gn check" or "gn gen --check". |
Henrik Kjellander | e0615b7 | 2016-05-18 09:35:44 +0200 | [diff] [blame] | 21 | # TODO(kjellander): Keep adding paths to this list as work in webrtc:5589 is done. |
aleloi | b7186d0 | 2016-08-16 01:47:16 -0700 | [diff] [blame] | 22 | check_targets = [ |
maxmorin | 6910537 | 2016-08-16 02:17:44 -0700 | [diff] [blame] | 23 | "//webrtc/modules/audio_device/*", |
kwiberg | 427ce3d | 2016-08-16 03:34:44 -0700 | [diff] [blame^] | 24 | "//webrtc/voice_engine:audio_coder", |
| 25 | "//webrtc/voice_engine:file_player", |
| 26 | "//webrtc/voice_engine:file_recorder", |
aleloi | b7186d0 | 2016-08-16 01:47:16 -0700 | [diff] [blame] | 27 | "//webrtc/voice_engine:level_indicator", |
| 28 | "//webrtc/modules/audio_coding:isac_fix_test", |
aleloi | 70f866c | 2016-08-16 02:15:49 -0700 | [diff] [blame] | 29 | "//webrtc/modules/audio_mixer:audio_conference_mixer", |
aleloi | b7186d0 | 2016-08-16 01:47:16 -0700 | [diff] [blame] | 30 | ] |
Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 31 | |
| 32 | # These are the list of GN files that run exec_script. This whitelist exists |
| 33 | # to force additional review for new uses of exec_script, which is strongly |
| 34 | # discouraged except for gypi_to_gn calls. |
| 35 | exec_script_whitelist = [ |
kjellander@webrtc.org | 66a9928 | 2016-02-18 20:30:14 +0100 | [diff] [blame] | 36 | "//build/config/BUILD.gn", |
Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 37 | "//build/config/android/BUILD.gn", |
| 38 | "//build/config/android/config.gni", |
| 39 | "//build/config/android/internal_rules.gni", |
| 40 | "//build/config/android/rules.gni", |
| 41 | "//build/config/compiler/BUILD.gn", |
| 42 | "//build/config/gcc/gcc_version.gni", |
| 43 | "//build/config/ios/ios_sdk.gni", |
| 44 | "//build/config/linux/BUILD.gn", |
| 45 | "//build/config/linux/pkg_config.gni", |
| 46 | "//build/config/mac/mac_sdk.gni", |
Henrik Kjellander | 6df1ef6 | 2015-10-03 20:55:57 +0200 | [diff] [blame] | 47 | "//build/config/posix/BUILD.gn", |
kjellander | 34a7054 | 2015-12-06 10:32:34 -0800 | [diff] [blame] | 48 | "//build/config/sysroot.gni", |
Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 49 | "//build/config/win/visual_studio_version.gni", |
| 50 | "//build/gn_helpers.py", |
| 51 | "//build/gypi_to_gn.py", |
kjellander | 52f56d4 | 2016-06-08 04:05:19 -0700 | [diff] [blame] | 52 | "//build/toolchain/concurrent_links.gni", |
Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 53 | "//build/toolchain/gcc_toolchain.gni", |
| 54 | "//build/toolchain/mac/BUILD.gn", |
| 55 | "//build/toolchain/win/BUILD.gn", |
| 56 | "//third_party/boringssl/BUILD.gn", |
hbos | a9a1d2a | 2016-01-11 10:19:02 -0800 | [diff] [blame] | 57 | "//third_party/openh264/BUILD.gn", |
Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 58 | "//third_party/opus/BUILD.gn", |
Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 59 | "//webrtc/modules/video_render/BUILD.gn", |
aleloi | e6ca9ec | 2016-08-10 05:01:51 -0700 | [diff] [blame] | 60 | "//webrtc/modules/video_render/BUILD.gn", |
Henrik Kjellander | 4117775 | 2015-04-09 15:36:28 +0200 | [diff] [blame] | 61 | ] |