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 26 matching lines...) Expand all Loading... |
37 "//webrtc/modules/congestion_controller/*", | 37 "//webrtc/modules/congestion_controller/*", |
38 "//webrtc/modules/desktop_capture/*", | 38 "//webrtc/modules/desktop_capture/*", |
39 "//webrtc/modules/media_file/*", | 39 "//webrtc/modules/media_file/*", |
40 "//webrtc/modules/pacing/*", | 40 "//webrtc/modules/pacing/*", |
41 "//webrtc/modules/rtp_rtcp/*", | 41 "//webrtc/modules/rtp_rtcp/*", |
42 "//webrtc/modules/utility/*", | 42 "//webrtc/modules/utility/*", |
43 "//webrtc/modules/video_capture/*", | 43 "//webrtc/modules/video_capture/*", |
44 "//webrtc/modules/video_coding/*", | 44 "//webrtc/modules/video_coding/*", |
45 "//webrtc/modules/video_processing/*", | 45 "//webrtc/modules/video_processing/*", |
46 "//webrtc/modules/remote_bitrate_estimator/*", | 46 "//webrtc/modules/remote_bitrate_estimator/*", |
| 47 "//webrtc/ortc/*", |
| 48 "//webrtc/p2p/*", |
47 "//webrtc/stats/*", | 49 "//webrtc/stats/*", |
48 "//webrtc/voice_engine/*", | 50 "//webrtc/voice_engine/*", |
49 ] | 51 ] |
50 | 52 |
51 # These are the list of GN files that run exec_script. This whitelist exists | 53 # These are the list of GN files that run exec_script. This whitelist exists |
52 # to force additional review for new uses of exec_script, which is strongly | 54 # to force additional review for new uses of exec_script, which is strongly |
53 # discouraged except for gypi_to_gn calls. | 55 # discouraged except for gypi_to_gn calls. |
54 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist | 56 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist |
OLD | NEW |