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 19 matching lines...) Expand all Loading... |
30 "//webrtc/common_audio/*", | 30 "//webrtc/common_audio/*", |
31 "//webrtc/examples/*", | 31 "//webrtc/examples/*", |
32 "//webrtc/logging/*", | 32 "//webrtc/logging/*", |
33 "//webrtc/media/*", | 33 "//webrtc/media/*", |
34 "//webrtc/modules/*", | 34 "//webrtc/modules/*", |
35 "//webrtc/ortc/*", | 35 "//webrtc/ortc/*", |
36 "//webrtc/p2p/*", | 36 "//webrtc/p2p/*", |
37 "//webrtc/sdk/*", | 37 "//webrtc/sdk/*", |
38 "//webrtc/stats/*", | 38 "//webrtc/stats/*", |
39 "//webrtc/system_wrappers/*", | 39 "//webrtc/system_wrappers/*", |
| 40 "//webrtc/test/*", |
40 "//webrtc/tools/*", | 41 "//webrtc/tools/*", |
41 "//webrtc/video/*", | 42 "//webrtc/video/*", |
42 "//webrtc/voice_engine/*", | 43 "//webrtc/voice_engine/*", |
43 ] | 44 ] |
44 | 45 |
45 # These are the list of GN files that run exec_script. This whitelist exists | 46 # These are the list of GN files that run exec_script. This whitelist exists |
46 # to force additional review for new uses of exec_script, which is strongly | 47 # to force additional review for new uses of exec_script, which is strongly |
47 # discouraged except for gypi_to_gn calls. | 48 # discouraged except for gypi_to_gn calls. |
48 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist | 49 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist |
49 | 50 |
50 default_args = { | 51 default_args = { |
51 # Webrtc does not support component builds because we are not using the | 52 # Webrtc does not support component builds because we are not using the |
52 # template "component" but we rely directly on "rtc_static_library" and | 53 # template "component" but we rely directly on "rtc_static_library" and |
53 # "rtc_shared_library". This means that we cannot use the chromium default | 54 # "rtc_shared_library". This means that we cannot use the chromium default |
54 # value for this argument. | 55 # value for this argument. |
55 # This also means that the user can override this value using --args or | 56 # This also means that the user can override this value using --args or |
56 # the args.gn file but this setting will be ignored because we don't support | 57 # the args.gn file but this setting will be ignored because we don't support |
57 # component builds. | 58 # component builds. |
58 is_component_build = false | 59 is_component_build = false |
59 } | 60 } |
OLD | NEW |