| 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 ] | 313 ] |
| 314 if (is_android) { | 314 if (is_android) { |
| 315 deps += [ | 315 deps += [ |
| 316 ":android_junit_tests", | 316 ":android_junit_tests", |
| 317 "//webrtc/sdk/android:libjingle_peerconnection_android_unittest", | 317 "//webrtc/sdk/android:libjingle_peerconnection_android_unittest", |
| 318 ] | 318 ] |
| 319 } else { | 319 } else { |
| 320 deps += [ "modules/video_capture:video_capture_tests" ] | 320 deps += [ "modules/video_capture:video_capture_tests" ] |
| 321 } | 321 } |
| 322 if (!is_ios) { | 322 if (!is_ios) { |
| 323 deps += [ | 323 deps += [ "voice_engine:voe_auto_test" ] |
| 324 "modules/audio_device:audio_device_tests", | |
| 325 "voice_engine:voe_auto_test", | |
| 326 ] | |
| 327 } | 324 } |
| 328 if (rtc_enable_protobuf) { | 325 if (rtc_enable_protobuf) { |
| 329 deps += [ "logging:rtc_event_log2rtp_dump" ] | 326 deps += [ "logging:rtc_event_log2rtp_dump" ] |
| 330 } | 327 } |
| 331 } | 328 } |
| 332 } | 329 } |
| 333 } | 330 } |
| 334 | 331 |
| 335 rtc_static_library("webrtc_common") { | 332 rtc_static_library("webrtc_common") { |
| 336 sources = [ | 333 sources = [ |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 ] | 508 ] |
| 512 | 509 |
| 513 deps = [ | 510 deps = [ |
| 514 "//base:base_java_test_support", | 511 "//base:base_java_test_support", |
| 515 "//webrtc/examples:AppRTCMobile_javalib", | 512 "//webrtc/examples:AppRTCMobile_javalib", |
| 516 "//webrtc/sdk/android:libjingle_peerconnection_java", | 513 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 517 ] | 514 ] |
| 518 } | 515 } |
| 519 } | 516 } |
| 520 } | 517 } |
| OLD | NEW |