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

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

Issue 2948763002: Allow an external audio processing module to be used in WebRTC (Closed)
Patch Set: tracking linux32_rel issue Created 3 years, 6 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 rtc_static_library("media_jni") { 161 rtc_static_library("media_jni") {
162 sources = [ 162 sources = [
163 "src/jni/media_jni.cc", 163 "src/jni/media_jni.cc",
164 ] 164 ]
165 165
166 deps = [ 166 deps = [
167 ":base_jni", 167 ":base_jni",
168 "//webrtc/call:call_interfaces", 168 "//webrtc/call:call_interfaces",
169 "//webrtc/logging:rtc_event_log_api", 169 "//webrtc/logging:rtc_event_log_api",
170 "//webrtc/media:rtc_audio_video", 170 "//webrtc/media:rtc_audio_video",
171 "//webrtc/modules/audio_processing:audio_processing",
171 ] 172 ]
172 173
173 if (is_clang) { 174 if (is_clang) {
174 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 175 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
175 suppressed_configs += [ 176 suppressed_configs += [
176 "//build/config/clang:extra_warnings", 177 "//build/config/clang:extra_warnings",
177 "//build/config/clang:find_bad_constructs", 178 "//build/config/clang:find_bad_constructs",
178 ] 179 ]
179 } 180 }
180 } 181 }
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 "//third_party/android_support_test_runner:runner_java", 452 "//third_party/android_support_test_runner:runner_java",
452 "//third_party/junit", 453 "//third_party/junit",
453 "//webrtc/base:base_java", 454 "//webrtc/base:base_java",
454 "//webrtc/sdk/android:libjingle_peerconnection_java", 455 "//webrtc/sdk/android:libjingle_peerconnection_java",
455 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", 456 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java",
456 ] 457 ]
457 458
458 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] 459 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ]
459 } 460 }
460 } 461 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698