OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 import("../webrtc.gni") | 9 import("../webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "//third_party/android_support_test_runner:runner_java", | 122 "//third_party/android_support_test_runner:runner_java", |
123 "//third_party/junit", | 123 "//third_party/junit", |
124 "//webrtc/sdk/android:libjingle_peerconnection_java", | 124 "//webrtc/sdk/android:libjingle_peerconnection_java", |
125 ] | 125 ] |
126 } | 126 } |
127 | 127 |
128 instrumentation_test_apk("AppRTCMobileTestStubbedVideoIO") { | 128 instrumentation_test_apk("AppRTCMobileTestStubbedVideoIO") { |
129 apk_name = "AppRTCMobileTestStubbedVideoIO" | 129 apk_name = "AppRTCMobileTestStubbedVideoIO" |
130 android_manifest = "androidtests/AndroidManifest.xml" | 130 android_manifest = "androidtests/AndroidManifest.xml" |
131 | 131 |
132 java_files = [ "androidtests/src/org/appspot/apprtc/test/ConnectActivityStub
bedInputOutputTest.java" ] | 132 java_files = [ "androidtests/src/org/appspot/apprtc/test/CallActivityStubbed
InputOutputTest.java" ] |
133 | 133 |
134 apk_under_test = ":AppRTCMobile" | 134 apk_under_test = ":AppRTCMobile" |
135 | 135 |
136 deps = [ | 136 deps = [ |
137 ":AppRTCMobile_javalib", | 137 ":AppRTCMobile_javalib", |
| 138 "//base:base_java_test_support", |
138 "//third_party/android_support_test_runner:rules_java", | 139 "//third_party/android_support_test_runner:rules_java", |
139 "//third_party/android_support_test_runner:runner_java", | 140 "//third_party/android_support_test_runner:runner_java", |
140 "//third_party/espresso:espresso_all_java", | 141 "//third_party/espresso:espresso_all_java", |
141 "//third_party/hamcrest:hamcrest_java", | 142 "//third_party/hamcrest:hamcrest_java", |
142 "//third_party/junit", | 143 "//third_party/junit", |
| 144 "//webrtc/base:base_java", |
143 "//webrtc/sdk/android:libjingle_peerconnection_java", | 145 "//webrtc/sdk/android:libjingle_peerconnection_java", |
144 ] | 146 ] |
145 | 147 |
146 data = [ | 148 data = [ |
147 "//resources/reference_video_640x360_30fps.y4m", | 149 "//resources/reference_video_640x360_30fps.y4m", |
148 ] | 150 ] |
149 } | 151 } |
150 } | 152 } |
151 | 153 |
152 if (is_ios || (is_mac && target_cpu != "x86")) { | 154 if (is_ios || (is_mac && target_cpu != "x86")) { |
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 | 656 |
655 deps = [ | 657 deps = [ |
656 "../base:rtc_base", | 658 "../base:rtc_base", |
657 "../base:rtc_base_approved", | 659 "../base:rtc_base_approved", |
658 "../p2p:libstunprober", | 660 "../p2p:libstunprober", |
659 "../p2p:rtc_p2p", | 661 "../p2p:rtc_p2p", |
660 "../system_wrappers:field_trial_default", | 662 "../system_wrappers:field_trial_default", |
661 ] | 663 ] |
662 } | 664 } |
663 } | 665 } |
OLD | NEW |