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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 22 matching lines...) Expand all Loading... |
33 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 33 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
34 } | 34 } |
35 | 35 |
36 deps = [ | 36 deps = [ |
37 "..:webrtc_common", | 37 "..:webrtc_common", |
38 "../api:audio_mixer_api", | 38 "../api:audio_mixer_api", |
39 "../api:call_api", | 39 "../api:call_api", |
40 "../api:optional", | 40 "../api:optional", |
41 "../api/audio_codecs:audio_codecs_api", | 41 "../api/audio_codecs:audio_codecs_api", |
42 "../api/audio_codecs:builtin_audio_encoder_factory", | 42 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 43 "../call:bitrate_allocator_header", |
43 "../call:call_interfaces", | 44 "../call:call_interfaces", |
44 "../call:rtp_interfaces", | 45 "../call:rtp_interfaces", |
45 "../common_audio", | 46 "../common_audio", |
46 "../modules/audio_coding:cng", | 47 "../modules/audio_coding:cng", |
47 "../modules/audio_device", | 48 "../modules/audio_device", |
48 "../modules/audio_processing", | 49 "../modules/audio_processing", |
49 "../modules/bitrate_controller:bitrate_controller", | 50 "../modules/bitrate_controller:bitrate_controller", |
50 "../modules/congestion_controller:congestion_controller", | 51 "../modules/congestion_controller:congestion_controller", |
51 "../modules/pacing:pacing", | 52 "../modules/pacing:pacing", |
52 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", | 53 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 data = [ | 195 data = [ |
195 "//resources/voice_engine/audio_dtx16.wav", | 196 "//resources/voice_engine/audio_dtx16.wav", |
196 ] | 197 ] |
197 | 198 |
198 if (!build_with_chromium && is_clang) { | 199 if (!build_with_chromium && is_clang) { |
199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 200 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 201 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
201 } | 202 } |
202 } | 203 } |
203 } | 204 } |
OLD | NEW |