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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 testonly = true | 288 testonly = true |
289 | 289 |
290 # Only the root target should depend on this. | 290 # Only the root target should depend on this. |
291 visibility = [ "//:default" ] | 291 visibility = [ "//:default" ] |
292 | 292 |
293 deps = [ | 293 deps = [ |
294 ":rtc_unittests", | 294 ":rtc_unittests", |
295 ":video_engine_tests", | 295 ":video_engine_tests", |
296 ":webrtc_nonparallel_tests", | 296 ":webrtc_nonparallel_tests", |
297 ":webrtc_perf_tests", | 297 ":webrtc_perf_tests", |
298 "api:peerconnection_unittests", | |
299 "common_audio:common_audio_unittests", | 298 "common_audio:common_audio_unittests", |
300 "common_video:common_video_unittests", | 299 "common_video:common_video_unittests", |
301 "libjingle:xmllite_xmpp_unittests", | 300 "libjingle:xmllite_xmpp_unittests", |
302 "media:rtc_media_unittests", | 301 "media:rtc_media_unittests", |
303 "modules:modules_tests", | 302 "modules:modules_tests", |
304 "modules:modules_unittests", | 303 "modules:modules_unittests", |
305 "modules/audio_coding:audio_coding_tests", | 304 "modules/audio_coding:audio_coding_tests", |
306 "modules/audio_processing:audio_processing_tests", | 305 "modules/audio_processing:audio_processing_tests", |
307 "modules/rtp_rtcp:test_packet_masks_metrics", | 306 "modules/rtp_rtcp:test_packet_masks_metrics", |
308 "modules/video_capture:video_capture_internal_impl", | 307 "modules/video_capture:video_capture_internal_impl", |
| 308 "pc:peerconnection_unittests", |
309 "pc:rtc_pc_unittests", | 309 "pc:rtc_pc_unittests", |
310 "stats:rtc_stats_unittests", | 310 "stats:rtc_stats_unittests", |
311 "system_wrappers:system_wrappers_unittests", | 311 "system_wrappers:system_wrappers_unittests", |
312 "test", | 312 "test", |
313 "video:screenshare_loopback", | 313 "video:screenshare_loopback", |
314 "video:video_loopback", | 314 "video:video_loopback", |
315 "video:video_tests", | 315 "video:video_tests", |
316 "voice_engine:voe_cmd_test", | 316 "voice_engine:voe_cmd_test", |
317 "voice_engine:voice_engine_unittests", | 317 "voice_engine:voice_engine_unittests", |
318 ] | 318 ] |
319 if (is_android) { | 319 if (is_android) { |
320 deps += [ | 320 deps += [ |
321 ":android_junit_tests", | 321 ":android_junit_tests", |
322 "api:libjingle_peerconnection_android_unittest", | 322 "pc:libjingle_peerconnection_android_unittest", |
323 ] | 323 ] |
324 } else { | 324 } else { |
325 deps += [ "modules/video_capture:video_capture_tests" ] | 325 deps += [ "modules/video_capture:video_capture_tests" ] |
326 } | 326 } |
327 if (!is_ios) { | 327 if (!is_ios) { |
328 deps += [ | 328 deps += [ |
329 "modules/audio_device:audio_device_tests", | 329 "modules/audio_device:audio_device_tests", |
330 "voice_engine:voe_auto_test", | 330 "voice_engine:voe_auto_test", |
331 ] | 331 ] |
332 } | 332 } |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 | 729 |
730 deps = [ | 730 deps = [ |
731 "//base:base_java_test_support", | 731 "//base:base_java_test_support", |
732 "//webrtc/api:libjingle_peerconnection_java", | 732 "//webrtc/api:libjingle_peerconnection_java", |
733 "//webrtc/api:libjingle_peerconnection_jni", | 733 "//webrtc/api:libjingle_peerconnection_jni", |
734 "//webrtc/examples:AppRTCMobile_javalib", | 734 "//webrtc/examples:AppRTCMobile_javalib", |
735 ] | 735 ] |
736 } | 736 } |
737 } | 737 } |
738 } | 738 } |
OLD | NEW |