| 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 10 matching lines...) Expand all Loading... |
| 21 # their includes checked for proper dependencies when you run either | 21 # their includes checked for proper dependencies when you run either |
| 22 # "gn check" or "gn gen --check". | 22 # "gn check" or "gn gen --check". |
| 23 # TODO(kjellander): Keep adding paths to this list as work in webrtc:5589 is don
e. | 23 # TODO(kjellander): Keep adding paths to this list as work in webrtc:5589 is don
e. |
| 24 check_targets = [ | 24 check_targets = [ |
| 25 "//webrtc/api/*", | 25 "//webrtc/api/*", |
| 26 "//webrtc/audio/*", | 26 "//webrtc/audio/*", |
| 27 "//webrtc/call/*", | 27 "//webrtc/call/*", |
| 28 "//webrtc/common_video/*", | 28 "//webrtc/common_video/*", |
| 29 "//webrtc/common_audio/*", | 29 "//webrtc/common_audio/*", |
| 30 "//webrtc/examples/*", | 30 "//webrtc/examples/*", |
| 31 "//webrtc/media/*", |
| 31 "//webrtc/modules/audio_coding/*", | 32 "//webrtc/modules/audio_coding/*", |
| 32 "//webrtc/modules/audio_conference_mixer/*", | 33 "//webrtc/modules/audio_conference_mixer/*", |
| 33 "//webrtc/modules/audio_device/*", | 34 "//webrtc/modules/audio_device/*", |
| 34 "//webrtc/modules/audio_mixer/*", | 35 "//webrtc/modules/audio_mixer/*", |
| 35 "//webrtc/modules/audio_processing/*", | 36 "//webrtc/modules/audio_processing/*", |
| 36 "//webrtc/modules/bitrate_controller/*", | 37 "//webrtc/modules/bitrate_controller/*", |
| 37 "//webrtc/modules/congestion_controller/*", | 38 "//webrtc/modules/congestion_controller/*", |
| 38 "//webrtc/modules/desktop_capture/*", | 39 "//webrtc/modules/desktop_capture/*", |
| 39 "//webrtc/modules/media_file/*", | 40 "//webrtc/modules/media_file/*", |
| 40 "//webrtc/modules/pacing/*", | 41 "//webrtc/modules/pacing/*", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 56 default_args = { | 57 default_args = { |
| 57 # Webrtc does not support component builds because we are not using the | 58 # Webrtc does not support component builds because we are not using the |
| 58 # template "component" but we rely directly on "rtc_static_library" and | 59 # template "component" but we rely directly on "rtc_static_library" and |
| 59 # "rtc_shared_library". This means that we cannot use the chromium default | 60 # "rtc_shared_library". This means that we cannot use the chromium default |
| 60 # value for this argument. | 61 # value for this argument. |
| 61 # This also means that the user can override this value using --args or | 62 # This also means that the user can override this value using --args or |
| 62 # the args.gn file but this setting will be ignored because we don't support | 63 # the args.gn file but this setting will be ignored because we don't support |
| 63 # component builds. | 64 # component builds. |
| 64 is_component_build = false | 65 is_component_build = false |
| 65 } | 66 } |
| OLD | NEW |