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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 "{{bundle_resources_dir}}/{{source_file_part}}", | 428 "{{bundle_resources_dir}}/{{source_file_part}}", |
429 ] | 429 ] |
430 } | 430 } |
431 } | 431 } |
432 | 432 |
433 rtc_test("video_engine_tests") { | 433 rtc_test("video_engine_tests") { |
434 testonly = true | 434 testonly = true |
435 deps = [ | 435 deps = [ |
436 "audio:audio_tests", | 436 "audio:audio_tests", |
437 "base:rtc_base_tests_utils", | 437 "base:rtc_base_tests_utils", |
| 438 |
| 439 # TODO(eladalon): call_tests aren't actually video-specific, so we |
| 440 # should move them to a more appropriate test suite. |
438 "call:call_tests", | 441 "call:call_tests", |
439 "modules/video_capture", | 442 "modules/video_capture", |
440 "test:test_common", | 443 "test:test_common", |
441 "test:test_main", | 444 "test:test_main", |
442 "test:video_test_common", | 445 "test:video_test_common", |
443 "video:video_tests", | 446 "video:video_tests", |
444 ] | 447 ] |
445 data = video_engine_tests_resources | 448 data = video_engine_tests_resources |
446 if (!build_with_chromium && is_clang) { | 449 if (!build_with_chromium && is_clang) { |
447 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 450 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 ] | 529 ] |
527 | 530 |
528 deps = [ | 531 deps = [ |
529 "//base:base_java_test_support", | 532 "//base:base_java_test_support", |
530 "//webrtc/examples:AppRTCMobile_javalib", | 533 "//webrtc/examples:AppRTCMobile_javalib", |
531 "//webrtc/sdk/android:libjingle_peerconnection_java", | 534 "//webrtc/sdk/android:libjingle_peerconnection_java", |
532 ] | 535 ] |
533 } | 536 } |
534 } | 537 } |
535 } | 538 } |
OLD | NEW |