| 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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
| 10 | 10 |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "voice_engine:voice_engine_unittests", | 319 "voice_engine:voice_engine_unittests", |
| 320 ] | 320 ] |
| 321 if (is_android) { | 321 if (is_android) { |
| 322 deps += [ | 322 deps += [ |
| 323 ":android_junit_tests", | 323 ":android_junit_tests", |
| 324 "sdk/android:libjingle_peerconnection_android_unittest", | 324 "sdk/android:libjingle_peerconnection_android_unittest", |
| 325 ] | 325 ] |
| 326 } else { | 326 } else { |
| 327 deps += [ "modules/video_capture:video_capture_tests" ] | 327 deps += [ "modules/video_capture:video_capture_tests" ] |
| 328 } | 328 } |
| 329 if (!is_ios) { | |
| 330 deps += [ "voice_engine:voe_auto_test" ] | |
| 331 } | |
| 332 if (rtc_enable_protobuf) { | 329 if (rtc_enable_protobuf) { |
| 333 deps += [ | 330 deps += [ |
| 334 "audio:low_bandwidth_audio_test", | 331 "audio:low_bandwidth_audio_test", |
| 335 "logging:rtc_event_log2rtp_dump", | 332 "logging:rtc_event_log2rtp_dump", |
| 336 ] | 333 ] |
| 337 } | 334 } |
| 338 } | 335 } |
| 339 } | 336 } |
| 340 } | 337 } |
| 341 | 338 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 ] | 531 ] |
| 535 | 532 |
| 536 deps = [ | 533 deps = [ |
| 537 "examples:AppRTCMobile_javalib", | 534 "examples:AppRTCMobile_javalib", |
| 538 "sdk/android:libjingle_peerconnection_java", | 535 "sdk/android:libjingle_peerconnection_java", |
| 539 "//base:base_java_test_support", | 536 "//base:base_java_test_support", |
| 540 ] | 537 ] |
| 541 } | 538 } |
| 542 } | 539 } |
| 543 } | 540 } |
| OLD | NEW |