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 | 33 |
34 deps = [ | 34 deps = [ |
35 "..:webrtc_common", | 35 "..:webrtc_common", |
36 "../api:audio_mixer_api", | 36 "../api:audio_mixer_api", |
37 "../api:call_api", | 37 "../api:call_api", |
38 "../api/audio_codecs:audio_codecs_api", | 38 "../api/audio_codecs:audio_codecs_api", |
39 "../api/audio_codecs:builtin_audio_encoder_factory", | 39 "../api/audio_codecs:builtin_audio_encoder_factory", |
40 "../base:rtc_base_approved", | 40 "../base:rtc_base_approved", |
41 "../base:rtc_task_queue", | 41 "../base:rtc_task_queue", |
42 "../call:call_interfaces", | 42 "../call:call_interfaces", |
| 43 "../call:rtp_interfaces", |
43 "../common_audio", | 44 "../common_audio", |
44 "../modules/audio_coding:cng", | 45 "../modules/audio_coding:cng", |
45 "../modules/audio_device", | 46 "../modules/audio_device", |
46 "../modules/audio_processing", | 47 "../modules/audio_processing", |
47 "../modules/bitrate_controller:bitrate_controller", | 48 "../modules/bitrate_controller:bitrate_controller", |
48 "../modules/congestion_controller:congestion_controller", | 49 "../modules/congestion_controller:congestion_controller", |
49 "../modules/pacing:pacing", | 50 "../modules/pacing:pacing", |
50 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", | 51 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
51 "../modules/rtp_rtcp:rtp_rtcp", | 52 "../modules/rtp_rtcp:rtp_rtcp", |
52 "../system_wrappers", | 53 "../system_wrappers", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "//resources/voice_engine/audio_tiny48.wav", | 123 "//resources/voice_engine/audio_tiny48.wav", |
123 ] | 124 ] |
124 | 125 |
125 if (!build_with_chromium && is_clang) { | 126 if (!build_with_chromium && is_clang) { |
126 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) | 127 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) |
127 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 128 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
128 } | 129 } |
129 } | 130 } |
130 } | 131 } |
131 } | 132 } |
OLD | NEW |