Chromium Code Reviews| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 531 if (!build_with_chromium && is_clang) { | 531 if (!build_with_chromium && is_clang) { |
| 532 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 532 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 533 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 533 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 534 } | 534 } |
| 535 | 535 |
| 536 deps = [ | 536 deps = [ |
| 537 "base:rtc_base", | 537 "base:rtc_base", |
| 538 "base:rtc_base_tests_utils", | 538 "base:rtc_base_tests_utils", |
| 539 "base:rtc_exp_filter", | 539 "base:rtc_exp_filter", |
| 540 "base:rtc_task_queue", | 540 "base:rtc_task_queue", |
| 541 "modules/video_capture:video_capture_internal_impl", | |
|
kjellander_webrtc
2016/11/18 13:52:40
If you need this to be able to depend on test:test
| |
| 541 "p2p:libstunprober", | 542 "p2p:libstunprober", |
| 542 "p2p:rtc_p2p", | 543 "p2p:rtc_p2p", |
| 544 "test:test_common", | |
| 543 "//testing/gmock", | 545 "//testing/gmock", |
| 544 "//testing/gtest", | 546 "//testing/gtest", |
| 545 ] | 547 ] |
| 546 | 548 |
| 547 if (rtc_enable_protobuf) { | 549 if (rtc_enable_protobuf) { |
| 548 deps += [ "logging:rtc_event_log_tests" ] | 550 deps += [ "logging:rtc_event_log_tests" ] |
| 549 } | 551 } |
| 550 | 552 |
| 551 if (is_android) { | 553 if (is_android) { |
| 552 deps += [ "//testing/android/native_test:native_test_support" ] | 554 deps += [ "//testing/android/native_test:native_test_support" ] |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 734 | 736 |
| 735 deps = [ | 737 deps = [ |
| 736 "//base:base_java_test_support", | 738 "//base:base_java_test_support", |
| 737 "//webrtc/api:libjingle_peerconnection_java", | 739 "//webrtc/api:libjingle_peerconnection_java", |
| 738 "//webrtc/api:libjingle_peerconnection_jni", | 740 "//webrtc/api:libjingle_peerconnection_jni", |
| 739 "//webrtc/examples:AppRTCMobile_javalib", | 741 "//webrtc/examples:AppRTCMobile_javalib", |
| 740 ] | 742 ] |
| 741 } | 743 } |
| 742 } | 744 } |
| 743 } | 745 } |
| OLD | NEW |