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

Side by Side Diff: webrtc/examples/BUILD.gn

Issue 2415563002: Testing of VideoFileRenderer with byte frames (Closed)
Patch Set: Re-design of VideoFileRendererTest Created 4 years, 1 month 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
« no previous file with comments | « no previous file | webrtc/examples/androidtests/src/org/appspot/apprtc/test/VideoFileRendererTest.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 android_resources("AppRTCMobile_resources") { 87 android_resources("AppRTCMobile_resources") {
88 resource_dirs = [ "androidapp/res" ] 88 resource_dirs = [ "androidapp/res" ]
89 custom_package = "org.appspot.apprtc" 89 custom_package = "org.appspot.apprtc"
90 } 90 }
91 91
92 instrumentation_test_apk("AppRTCMobileTest") { 92 instrumentation_test_apk("AppRTCMobileTest") {
93 apk_name = "AppRTCMobileTest" 93 apk_name = "AppRTCMobileTest"
94 android_manifest = "androidtests/AndroidManifest.xml" 94 android_manifest = "androidtests/AndroidManifest.xml"
95 95
96 java_files = [ "androidtests/src/org/appspot/apprtc/test/PeerConnectionClien tTest.java" ] 96 java_files = [
97 "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java",
98 "androidtests/src/org/appspot/apprtc/test/VideoFileRendererTest.java",
99 ]
97 100
98 apk_under_test = ":AppRTCMobile" 101 apk_under_test = ":AppRTCMobile"
99 102
100 deps = [ 103 deps = [
101 ":AppRTCMobile_javalib", 104 ":AppRTCMobile_javalib",
102 "//webrtc/api:libjingle_peerconnection_java", 105 "//webrtc/api:libjingle_peerconnection_java",
103 ] 106 ]
104 } 107 }
105 } 108 }
106 109
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 "//webrtc/pc:rtc_pc", 515 "//webrtc/pc:rtc_pc",
513 "//webrtc/system_wrappers:field_trial_default", 516 "//webrtc/system_wrappers:field_trial_default",
514 "//webrtc/system_wrappers:metrics_default", 517 "//webrtc/system_wrappers:metrics_default",
515 ] 518 ]
516 if (!build_with_chromium && is_clang) { 519 if (!build_with_chromium && is_clang) {
517 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 520 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
518 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 521 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
519 } 522 }
520 } 523 }
521 } 524 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/androidtests/src/org/appspot/apprtc/test/VideoFileRendererTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698