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") | 9 import("//build/dotfile_settings.gni") |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 "//webrtc/modules/audio_conference_mixer/*", | 28 "//webrtc/modules/audio_conference_mixer/*", |
29 "//webrtc/modules/audio_device/*", | 29 "//webrtc/modules/audio_device/*", |
30 "//webrtc/modules/audio_mixer/*", | 30 "//webrtc/modules/audio_mixer/*", |
31 "//webrtc/modules/audio_processing/*", | 31 "//webrtc/modules/audio_processing/*", |
32 "//webrtc/modules/media_file/*", | 32 "//webrtc/modules/media_file/*", |
33 "//webrtc/modules/pacing/*", | 33 "//webrtc/modules/pacing/*", |
34 "//webrtc/modules/rtp_rtcp/*", | 34 "//webrtc/modules/rtp_rtcp/*", |
35 "//webrtc/modules/utility/*", | 35 "//webrtc/modules/utility/*", |
36 "//webrtc/modules/video_capture/*", | 36 "//webrtc/modules/video_capture/*", |
37 "//webrtc/modules/video_coding/*", | 37 "//webrtc/modules/video_coding/*", |
| 38 "//webrtc/modules/video_processing/*", |
38 "//webrtc/stats:rtc_stats", | 39 "//webrtc/stats:rtc_stats", |
39 "//webrtc/voice_engine", | 40 "//webrtc/voice_engine", |
40 "//webrtc/voice_engine:level_indicator", | 41 "//webrtc/voice_engine:level_indicator", |
41 ] | 42 ] |
42 | 43 |
43 # These are the list of GN files that run exec_script. This whitelist exists | 44 # 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 | 45 # to force additional review for new uses of exec_script, which is strongly |
45 # discouraged except for gypi_to_gn calls. | 46 # discouraged except for gypi_to_gn calls. |
46 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + [ | 47 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + [ |
47 "//third_party/boringssl/BUILD.gn", | 48 "//third_party/boringssl/BUILD.gn", |
48 "//third_party/openh264/BUILD.gn", | 49 "//third_party/openh264/BUILD.gn", |
49 "//third_party/opus/BUILD.gn", | 50 "//third_party/opus/BUILD.gn", |
50 "//webrtc/modules/video_render/BUILD.gn", | 51 "//webrtc/modules/video_render/BUILD.gn", |
51 ] | 52 ] |
OLD | NEW |