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 17 matching lines...) Expand all Loading... |
28 | 28 |
29 if (!build_with_chromium && is_clang) { | 29 if (!build_with_chromium && is_clang) { |
30 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 30 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
31 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 31 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
32 } | 32 } |
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", |
| 39 "../api/audio_codecs:builtin_audio_encoder_factory", |
38 "../base:rtc_base_approved", | 40 "../base:rtc_base_approved", |
39 "../base:rtc_task_queue", | 41 "../base:rtc_task_queue", |
40 "../call:call_interfaces", | 42 "../call:call_interfaces", |
41 "../common_audio", | 43 "../common_audio", |
42 "../modules/audio_coding:audio_encoder_factory_interface", | |
43 "../modules/audio_coding:builtin_audio_encoder_factory", | |
44 "../modules/audio_coding:cng", | 44 "../modules/audio_coding:cng", |
45 "../modules/audio_device", | 45 "../modules/audio_device", |
46 "../modules/audio_processing", | 46 "../modules/audio_processing", |
47 "../modules/bitrate_controller:bitrate_controller", | 47 "../modules/bitrate_controller:bitrate_controller", |
48 "../modules/congestion_controller:congestion_controller", | 48 "../modules/congestion_controller:congestion_controller", |
49 "../modules/pacing:pacing", | 49 "../modules/pacing:pacing", |
50 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", | 50 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
51 "../modules/rtp_rtcp:rtp_rtcp", | 51 "../modules/rtp_rtcp:rtp_rtcp", |
52 "../system_wrappers", | 52 "../system_wrappers", |
53 "../voice_engine", | 53 "../voice_engine", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 "//resources/voice_engine/audio_tiny16.wav", | 112 "//resources/voice_engine/audio_tiny16.wav", |
113 ] | 113 ] |
114 | 114 |
115 if (!build_with_chromium && is_clang) { | 115 if (!build_with_chromium && is_clang) { |
116 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) | 116 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) |
117 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 117 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
118 } | 118 } |
119 } | 119 } |
120 } | 120 } |
121 } | 121 } |
OLD | NEW |