Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: webrtc/pc/BUILD.gn

Issue 2961723004: Allow an external audio processing module to be used in WebRTC (Closed)
Patch Set: Moved creation of APMs from CreateVoiceEngines Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/ortc/ortcfactory.cc ('k') | webrtc/pc/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 "../api/audio_codecs:audio_codecs_api", 196 "../api/audio_codecs:audio_codecs_api",
197 "../api/audio_codecs:builtin_audio_decoder_factory", 197 "../api/audio_codecs:builtin_audio_decoder_factory",
198 "../api/audio_codecs:builtin_audio_encoder_factory", 198 "../api/audio_codecs:builtin_audio_encoder_factory",
199 "../base:rtc_base", 199 "../base:rtc_base",
200 "../base:rtc_base_approved", 200 "../base:rtc_base_approved",
201 "../call", 201 "../call",
202 "../call:call_interfaces", 202 "../call:call_interfaces",
203 "../logging:rtc_event_log_api", 203 "../logging:rtc_event_log_api",
204 "../media:rtc_audio_video", 204 "../media:rtc_audio_video",
205 "../modules/audio_device:audio_device", 205 "../modules/audio_device:audio_device",
206 "../modules/audio_processing:audio_processing",
206 ] 207 ]
207 208
208 configs += [ ":libjingle_peerconnection_warnings_config" ] 209 configs += [ ":libjingle_peerconnection_warnings_config" ]
209 210
210 if (!build_with_chromium && is_clang) { 211 if (!build_with_chromium && is_clang) {
211 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
212 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
213 } 214 }
214 } 215 }
215 216
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 "//testing/gmock", 448 "//testing/gmock",
448 ] 449 ]
449 450
450 if (is_android) { 451 if (is_android) {
451 deps += [ "//testing/android/native_test:native_test_support" ] 452 deps += [ "//testing/android/native_test:native_test_support" ]
452 453
453 shard_timeout = 900 454 shard_timeout = 900
454 } 455 }
455 } 456 }
456 } 457 }
OLDNEW
« no previous file with comments | « webrtc/ortc/ortcfactory.cc ('k') | webrtc/pc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698