| OLD | NEW |
| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 rtc_static_library("media_jni") { | 176 rtc_static_library("media_jni") { |
| 177 sources = [ | 177 sources = [ |
| 178 "src/jni/media_jni.cc", | 178 "src/jni/media_jni.cc", |
| 179 ] | 179 ] |
| 180 | 180 |
| 181 deps = [ | 181 deps = [ |
| 182 ":base_jni", | 182 ":base_jni", |
| 183 "//webrtc/call:call_interfaces", | 183 "//webrtc/call:call_interfaces", |
| 184 "//webrtc/logging:rtc_event_log_api", | 184 "//webrtc/logging:rtc_event_log_api", |
| 185 "//webrtc/media:rtc_audio_video", | 185 "//webrtc/media:rtc_audio_video", |
| 186 "//webrtc/modules/audio_processing:audio_processing", |
| 186 ] | 187 ] |
| 187 | 188 |
| 188 if (is_clang) { | 189 if (is_clang) { |
| 189 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 190 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 190 suppressed_configs += [ | 191 suppressed_configs += [ |
| 191 "//build/config/clang:extra_warnings", | 192 "//build/config/clang:extra_warnings", |
| 192 "//build/config/clang:find_bad_constructs", | 193 "//build/config/clang:find_bad_constructs", |
| 193 ] | 194 ] |
| 194 } | 195 } |
| 195 } | 196 } |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 "//third_party/android_support_test_runner:runner_java", | 464 "//third_party/android_support_test_runner:runner_java", |
| 464 "//third_party/junit", | 465 "//third_party/junit", |
| 465 "//webrtc/rtc_base:base_java", | 466 "//webrtc/rtc_base:base_java", |
| 466 "//webrtc/sdk/android:libjingle_peerconnection_java", | 467 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 467 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", | 468 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", |
| 468 ] | 469 ] |
| 469 | 470 |
| 470 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 471 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] |
| 471 } | 472 } |
| 472 } | 473 } |
| OLD | NEW |