OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 | 10 |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "../api:audio_mixer_api", | 137 "../api:audio_mixer_api", |
138 "../api:call_api", | 138 "../api:call_api", |
139 "../api:libjingle_peerconnection_api", | 139 "../api:libjingle_peerconnection_api", |
140 "../api:transport_api", | 140 "../api:transport_api", |
141 "../api/audio_codecs:audio_codecs_api", | 141 "../api/audio_codecs:audio_codecs_api", |
142 "../api/audio_codecs:builtin_audio_decoder_factory", | 142 "../api/audio_codecs:builtin_audio_decoder_factory", |
143 "../api/audio_codecs:builtin_audio_encoder_factory", | 143 "../api/audio_codecs:builtin_audio_encoder_factory", |
144 "../audio/utility:audio_frame_operations", | 144 "../audio/utility:audio_frame_operations", |
145 "../base:rtc_base_approved", | 145 "../base:rtc_base_approved", |
146 "../base:rtc_task_queue", | 146 "../base:rtc_task_queue", |
147 "../modules:module_api", | 147 "../call:rtp_interfaces", |
148 | |
149 # TODO(nisse): Delete when declaration of RtpTransportController | |
150 # and related interfaces move to api/. | |
151 "../call:call_interfaces", | |
152 "../common_audio", | 148 "../common_audio", |
153 "../logging:rtc_event_log_api", | 149 "../logging:rtc_event_log_api", |
| 150 "../modules:module_api", |
154 "../modules/audio_coding:audio_format_conversion", | 151 "../modules/audio_coding:audio_format_conversion", |
155 "../modules/audio_coding:rent_a_codec", | 152 "../modules/audio_coding:rent_a_codec", |
156 "../modules/audio_conference_mixer", | 153 "../modules/audio_conference_mixer", |
157 "../modules/audio_device", | 154 "../modules/audio_device", |
158 "../modules/audio_processing", | 155 "../modules/audio_processing", |
159 "../modules/bitrate_controller", | 156 "../modules/bitrate_controller", |
160 "../modules/media_file", | 157 "../modules/media_file", |
161 "../modules/pacing", | 158 "../modules/pacing", |
162 "../modules/rtp_rtcp", | 159 "../modules/rtp_rtcp", |
163 "../modules/utility", | 160 "../modules/utility", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 ] | 305 ] |
309 } | 306 } |
310 | 307 |
311 if (!build_with_chromium && is_clang) { | 308 if (!build_with_chromium && is_clang) { |
312 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 309 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
313 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 310 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
314 } | 311 } |
315 } | 312 } |
316 } | 313 } |
317 } | 314 } |
OLD | NEW |