| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("//build/dotfile_settings.gni") |
| 10 |
| 9 # The location of the build configuration file. | 11 # The location of the build configuration file. |
| 10 buildconfig = "//build/config/BUILDCONFIG.gn" | 12 buildconfig = "//build/config/BUILDCONFIG.gn" |
| 11 | 13 |
| 12 # The secondary source root is a parallel directory tree where | 14 # The secondary source root is a parallel directory tree where |
| 13 # GN build files are placed when they can not be placed directly | 15 # GN build files are placed when they can not be placed directly |
| 14 # in the source tree, e.g. for third party source trees. | 16 # in the source tree, e.g. for third party source trees. |
| 15 secondary_source = "//build/secondary/" | 17 secondary_source = "//build/secondary/" |
| 16 | 18 |
| 17 # These are the targets to check headers for by default. The files in targets | 19 # 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 | 20 # matching these patterns (see "gn help label_pattern" for format) will have |
| (...skipping 17 matching lines...) Expand all Loading... |
| 36 "//webrtc/modules/audio_coding:webrtc_opus_fec_test", | 38 "//webrtc/modules/audio_coding:webrtc_opus_fec_test", |
| 37 "//webrtc/modules/audio_device/*", | 39 "//webrtc/modules/audio_device/*", |
| 38 "//webrtc/modules/audio_mixer/*", | 40 "//webrtc/modules/audio_mixer/*", |
| 39 "//webrtc/stats:rtc_stats", | 41 "//webrtc/stats:rtc_stats", |
| 40 "//webrtc/voice_engine:level_indicator", | 42 "//webrtc/voice_engine:level_indicator", |
| 41 ] | 43 ] |
| 42 | 44 |
| 43 # These are the list of GN files that run exec_script. This whitelist exists | 45 # These are the list of GN files that run exec_script. This whitelist exists |
| 44 # to force additional review for new uses of exec_script, which is strongly | 46 # to force additional review for new uses of exec_script, which is strongly |
| 45 # discouraged except for gypi_to_gn calls. | 47 # discouraged except for gypi_to_gn calls. |
| 46 exec_script_whitelist = [ | 48 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + [ |
| 47 "//build/config/BUILD.gn", | 49 "//third_party/boringssl/BUILD.gn", |
| 48 "//build/config/android/BUILD.gn", | 50 "//third_party/openh264/BUILD.gn", |
| 49 "//build/config/android/config.gni", | 51 "//third_party/opus/BUILD.gn", |
| 50 "//build/config/android/internal_rules.gni", | 52 "//webrtc/modules/video_render/BUILD.gn", |
| 51 "//build/config/android/rules.gni", | 53 ] |
| 52 "//build/config/compiler/BUILD.gn", | |
| 53 "//build/config/gcc/gcc_version.gni", | |
| 54 "//build/config/ios/ios_sdk.gni", | |
| 55 "//build/config/linux/BUILD.gn", | |
| 56 "//build/config/linux/pkg_config.gni", | |
| 57 "//build/config/mac/mac_sdk.gni", | |
| 58 "//build/config/mac/rules.gni", | |
| 59 "//build/config/posix/BUILD.gn", | |
| 60 "//build/config/sysroot.gni", | |
| 61 "//build/config/win/BUILD.gn", | |
| 62 "//build/config/win/visual_studio_version.gni", | |
| 63 "//build/gn_helpers.py", | |
| 64 "//build/gypi_to_gn.py", | |
| 65 "//build/toolchain/concurrent_links.gni", | |
| 66 "//build/toolchain/gcc_toolchain.gni", | |
| 67 "//build/toolchain/mac/BUILD.gn", | |
| 68 "//build/toolchain/toolchain.gni", | |
| 69 "//build/toolchain/win/BUILD.gn", | |
| 70 "//third_party/boringssl/BUILD.gn", | |
| 71 "//third_party/openh264/BUILD.gn", | |
| 72 "//third_party/opus/BUILD.gn", | |
| 73 "//webrtc/modules/video_render/BUILD.gn", | |
| 74 ] | |
| OLD | NEW |