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

Unified Diff: webrtc/examples/BUILD.gn

Issue 2405463002: Testing of FileVideoCapturer (Closed)
Patch Set: Cleaned up and changed which pixels are compared in FileVideoCaputurerTest Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/examples/BUILD.gn
diff --git a/webrtc/examples/BUILD.gn b/webrtc/examples/BUILD.gn
index f79501b50192f24cffaac20b69ec2b737f38a636..b2cbf95f3fe0d1fad638537d7189924f867232c2 100644
--- a/webrtc/examples/BUILD.gn
+++ b/webrtc/examples/BUILD.gn
@@ -93,7 +93,10 @@ if (is_android) {
apk_name = "AppRTCMobileTest"
android_manifest = "androidtests/AndroidManifest.xml"
- java_files = [ "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java" ]
+ java_files = [
+ "androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.java",
+ "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java",
+ ]
apk_under_test = ":AppRTCMobile"
@@ -101,6 +104,10 @@ if (is_android) {
":AppRTCMobile_javalib",
"//webrtc/api:libjingle_peerconnection_java",
]
+
+ data = [
+ "//resources/reference_video_640x360_30fps.y4m",
kjellander_webrtc 2016/10/12 21:07:50 Can you upload a smaller version if you're only co
mandermo 2016/10/13 11:32:48 I have uploaded a shorter version of the video wit
kjellander_webrtc 2016/10/13 14:27:49 Great, thanks!
+ ]
}
}

Powered by Google App Engine
This is Rietveld 408576698