Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Side by Side Diff: webrtc/sdk/android/BUILD.gn

Issue 2632233002: Move file capturer/renderer tests to the correct location. (Closed)
Patch Set: Rebase. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/build/webrtc.gni") 9 import("//webrtc/build/webrtc.gni")
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 instrumentation_test_apk("libjingle_peerconnection_android_unittest") { 188 instrumentation_test_apk("libjingle_peerconnection_android_unittest") {
189 apk_name = "libjingle_peerconnection_android_unittest" 189 apk_name = "libjingle_peerconnection_android_unittest"
190 android_manifest = "instrumentationtests/AndroidManifest.xml" 190 android_manifest = "instrumentationtests/AndroidManifest.xml"
191 191
192 java_files = [ 192 java_files = [
193 "instrumentationtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.ja va", 193 "instrumentationtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.ja va",
194 "instrumentationtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java" , 194 "instrumentationtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java" ,
195 "instrumentationtests/src/org/webrtc/Camera2CapturerTest.java", 195 "instrumentationtests/src/org/webrtc/Camera2CapturerTest.java",
196 "instrumentationtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java" , 196 "instrumentationtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java" ,
197 "instrumentationtests/src/org/webrtc/EglRendererTest.java", 197 "instrumentationtests/src/org/webrtc/EglRendererTest.java",
198 "instrumentationtests/src/org/webrtc/FileVideoCapturerTest.java",
198 "instrumentationtests/src/org/webrtc/GlRectDrawerTest.java", 199 "instrumentationtests/src/org/webrtc/GlRectDrawerTest.java",
199 "instrumentationtests/src/org/webrtc/MediaCodecVideoEncoderTest.java", 200 "instrumentationtests/src/org/webrtc/MediaCodecVideoEncoderTest.java",
200 "instrumentationtests/src/org/webrtc/NetworkMonitorTest.java", 201 "instrumentationtests/src/org/webrtc/NetworkMonitorTest.java",
201 "instrumentationtests/src/org/webrtc/PeerConnectionTest.java", 202 "instrumentationtests/src/org/webrtc/PeerConnectionTest.java",
202 "instrumentationtests/src/org/webrtc/RendererCommonTest.java", 203 "instrumentationtests/src/org/webrtc/RendererCommonTest.java",
203 "instrumentationtests/src/org/webrtc/SurfaceTextureHelperTest.java", 204 "instrumentationtests/src/org/webrtc/SurfaceTextureHelperTest.java",
204 "instrumentationtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java ", 205 "instrumentationtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java ",
206 "instrumentationtests/src/org/webrtc/VideoFileRendererTest.java",
205 "instrumentationtests/src/org/webrtc/WebRtcJniBootTest.java", 207 "instrumentationtests/src/org/webrtc/WebRtcJniBootTest.java",
206 ] 208 ]
207 209
210 data = [
211 "//webrtc/sdk/android/instrumentationtests/src/org/webrtc/capturetestvideo .y4m",
212 ]
213
208 deps = [ 214 deps = [
209 "//base:base_java", 215 "//base:base_java",
210 "//base:base_java_test_support", 216 "//base:base_java_test_support",
211 "//third_party/android_support_test_runner:rules_java", 217 "//third_party/android_support_test_runner:rules_java",
212 "//third_party/android_support_test_runner:runner_java", 218 "//third_party/android_support_test_runner:runner_java",
213 "//third_party/junit", 219 "//third_party/junit",
214 "//webrtc/base:base_java", 220 "//webrtc/base:base_java",
215 "//webrtc/sdk/android:libjingle_peerconnection_java", 221 "//webrtc/sdk/android:libjingle_peerconnection_java",
216 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", 222 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java",
217 ] 223 ]
218 224
219 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] 225 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ]
220 } 226 }
221 } 227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698