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

Side by Side Diff: webrtc/ortc/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/modules/audio_processing/include/audio_processing.h ('k') | webrtc/ortc/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) 2017 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2017 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 23 matching lines...) Expand all
34 # libjingle_peerconnection. 34 # libjingle_peerconnection.
35 deps = [ 35 deps = [
36 "../api/audio_codecs:builtin_audio_decoder_factory", 36 "../api/audio_codecs:builtin_audio_decoder_factory",
37 "../api/audio_codecs:builtin_audio_encoder_factory", 37 "../api/audio_codecs:builtin_audio_encoder_factory",
38 "../base:rtc_base", 38 "../base:rtc_base",
39 "../base:rtc_base_approved", 39 "../base:rtc_base_approved",
40 "../call:call_interfaces", 40 "../call:call_interfaces",
41 "../logging:rtc_event_log_api", 41 "../logging:rtc_event_log_api",
42 "../media:rtc_media", 42 "../media:rtc_media",
43 "../media:rtc_media_base", 43 "../media:rtc_media_base",
44 "../modules/audio_processing:audio_processing",
44 "../p2p:rtc_p2p", 45 "../p2p:rtc_p2p",
45 "../pc:libjingle_peerconnection", 46 "../pc:libjingle_peerconnection",
46 "../pc:rtc_pc", 47 "../pc:rtc_pc",
47 ] 48 ]
48 49
49 public_deps = [ 50 public_deps = [
50 "../api:ortc_api", 51 "../api:ortc_api",
51 ] 52 ]
52 53
53 if (!build_with_chromium && is_clang) { 54 if (!build_with_chromium && is_clang) {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 if (!build_with_chromium && is_clang) { 90 if (!build_with_chromium && is_clang) {
90 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 91 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
91 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 92 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
92 } 93 }
93 94
94 if (is_android) { 95 if (is_android) {
95 deps += [ "//testing/android/native_test:native_test_support" ] 96 deps += [ "//testing/android/native_test:native_test_support" ]
96 } 97 }
97 } 98 }
98 } 99 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/include/audio_processing.h ('k') | webrtc/ortc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698