| 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 deps = [ | 544 deps = [ |
| 545 "base:rtc_base", | 545 "base:rtc_base", |
| 546 "base:rtc_base_tests_utils", | 546 "base:rtc_base_tests_utils", |
| 547 "base:rtc_task_queue", | 547 "base:rtc_task_queue", |
| 548 "p2p:libstunprober", | 548 "p2p:libstunprober", |
| 549 "p2p:rtc_p2p", | 549 "p2p:rtc_p2p", |
| 550 "//testing/gmock", | 550 "//testing/gmock", |
| 551 "//testing/gtest", | 551 "//testing/gtest", |
| 552 ] | 552 ] |
| 553 | 553 |
| 554 if (rtc_enable_protobuf) { |
| 555 deps += [ "call:rtc_event_log_tests" ] |
| 556 } |
| 557 |
| 554 if (is_android) { | 558 if (is_android) { |
| 555 deps += [ "//testing/android/native_test:native_test_support" ] | 559 deps += [ "//testing/android/native_test:native_test_support" ] |
| 556 shard_timeout = 900 | 560 shard_timeout = 900 |
| 557 } | 561 } |
| 558 | 562 |
| 559 if (is_ios || (is_mac && mac_deployment_target == "10.7")) { | 563 if (is_ios || (is_mac && mac_deployment_target == "10.7")) { |
| 560 deps += [ | 564 deps += [ |
| 561 "sdk:rtc_sdk_peerconnection_objc", | 565 "sdk:rtc_sdk_peerconnection_objc", |
| 562 "system_wrappers:system_wrappers_default", | 566 "system_wrappers:system_wrappers_default", |
| 563 ] | 567 ] |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 junit_binary("android_junit_tests") { | 840 junit_binary("android_junit_tests") { |
| 837 java_files = [ "androidjunit/src/org/webrtc/CameraEnumerationTest.java" ] | 841 java_files = [ "androidjunit/src/org/webrtc/CameraEnumerationTest.java" ] |
| 838 | 842 |
| 839 deps = [ | 843 deps = [ |
| 840 "//webrtc/api:libjingle_peerconnection_java", | 844 "//webrtc/api:libjingle_peerconnection_java", |
| 841 "//webrtc/api:libjingle_peerconnection_jni", | 845 "//webrtc/api:libjingle_peerconnection_jni", |
| 842 ] | 846 ] |
| 843 } | 847 } |
| 844 } | 848 } |
| 845 } | 849 } |
| OLD | NEW |