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

Side by Side Diff: webrtc/sdk/android/BUILD.gn

Issue 2961723004: Allow an external audio processing module to be used in WebRTC (Closed)
Patch Set: Readded the audio_processing getter method 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
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/webrtc.gni") 9 import("//webrtc/webrtc.gni")
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 rtc_static_library("media_jni") { 165 rtc_static_library("media_jni") {
166 sources = [ 166 sources = [
167 "src/jni/media_jni.cc", 167 "src/jni/media_jni.cc",
168 ] 168 ]
169 169
170 deps = [ 170 deps = [
171 ":base_jni", 171 ":base_jni",
172 "//webrtc/call:call_interfaces", 172 "//webrtc/call:call_interfaces",
173 "//webrtc/logging:rtc_event_log_api", 173 "//webrtc/logging:rtc_event_log_api",
174 "//webrtc/media:rtc_audio_video", 174 "//webrtc/media:rtc_audio_video",
175 "//webrtc/modules/audio_processing:audio_processing",
175 ] 176 ]
176 177
177 if (is_clang) { 178 if (is_clang) {
178 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 179 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
179 suppressed_configs += [ 180 suppressed_configs += [
180 "//build/config/clang:extra_warnings", 181 "//build/config/clang:extra_warnings",
181 "//build/config/clang:find_bad_constructs", 182 "//build/config/clang:find_bad_constructs",
182 ] 183 ]
183 } 184 }
184 } 185 }
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 "//third_party/android_support_test_runner:runner_java", 457 "//third_party/android_support_test_runner:runner_java",
457 "//third_party/junit", 458 "//third_party/junit",
458 "//webrtc/base:base_java", 459 "//webrtc/base:base_java",
459 "//webrtc/sdk/android:libjingle_peerconnection_java", 460 "//webrtc/sdk/android:libjingle_peerconnection_java",
460 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", 461 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java",
461 ] 462 ]
462 463
463 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] 464 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ]
464 } 465 }
465 } 466 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698