| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 | 10 |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "android/audio_device_unittest.cc", | 300 "android/audio_device_unittest.cc", |
| 301 "android/audio_manager_unittest.cc", | 301 "android/audio_manager_unittest.cc", |
| 302 "android/ensure_initialized.cc", | 302 "android/ensure_initialized.cc", |
| 303 "android/ensure_initialized.h", | 303 "android/ensure_initialized.h", |
| 304 ] | 304 ] |
| 305 deps += [ | 305 deps += [ |
| 306 "../../../base", | 306 "../../../base", |
| 307 "//webrtc/sdk/android:libjingle_peerconnection_java", | 307 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 308 ] | 308 ] |
| 309 } | 309 } |
| 310 if (is_ios) { | 310 if (is_ios && !use_ios_simulator) { |
| 311 # TODO(kthelgason): Reenable these tests on simulator. |
| 312 # See bugs.webrtc.org/7812 |
| 311 sources += [ "ios/audio_device_unittest_ios.mm" ] | 313 sources += [ "ios/audio_device_unittest_ios.mm" ] |
| 312 deps += [ "//third_party/ocmock" ] | 314 deps += [ "//third_party/ocmock" ] |
| 313 } | 315 } |
| 314 if (!build_with_chromium && is_clang) { | 316 if (!build_with_chromium && is_clang) { |
| 315 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 317 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 316 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 318 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 317 } | 319 } |
| 318 } | 320 } |
| 319 | 321 |
| 320 if (!is_ios) { | 322 if (!is_ios) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 350 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 352 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
| 351 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
| 352 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
| 353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
| 354 ] | 356 ] |
| 355 deps = [ | 357 deps = [ |
| 356 "//webrtc/base:base_java", | 358 "//webrtc/base:base_java", |
| 357 ] | 359 ] |
| 358 } | 360 } |
| 359 } | 361 } |
| OLD | NEW |