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

Side by Side Diff: webrtc/examples/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
« no previous file with comments | « no previous file | webrtc/examples/androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 android_resources("AppRTCMobile_resources") { 101 android_resources("AppRTCMobile_resources") {
102 resource_dirs = [ "androidapp/res" ] 102 resource_dirs = [ "androidapp/res" ]
103 custom_package = "org.appspot.apprtc" 103 custom_package = "org.appspot.apprtc"
104 } 104 }
105 105
106 instrumentation_test_apk("AppRTCMobileTest") { 106 instrumentation_test_apk("AppRTCMobileTest") {
107 apk_name = "AppRTCMobileTest" 107 apk_name = "AppRTCMobileTest"
108 android_manifest = "androidtests/AndroidManifest.xml" 108 android_manifest = "androidtests/AndroidManifest.xml"
109 109
110 java_files = [ 110 java_files = [ "androidtests/src/org/appspot/apprtc/test/PeerConnectionClien tTest.java" ]
111 "androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.java",
112 "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java",
113 "androidtests/src/org/appspot/apprtc/test/VideoFileRendererTest.java",
114 ]
115 111
116 apk_under_test = ":AppRTCMobile" 112 apk_under_test = ":AppRTCMobile"
117 113
118 deps = [ 114 deps = [
119 ":AppRTCMobile_javalib", 115 ":AppRTCMobile_javalib",
120 "//base:base_java_test_support", 116 "//base:base_java_test_support",
121 "//third_party/android_support_test_runner:runner_java", 117 "//third_party/android_support_test_runner:runner_java",
122 "//third_party/junit", 118 "//third_party/junit",
123 "//webrtc/sdk/android:libjingle_peerconnection_java", 119 "//webrtc/sdk/android:libjingle_peerconnection_java",
124 ] 120 ]
125
126 data = [
127 "//webrtc/examples/androidtests/src/org/appspot/apprtc/test/capturetestvid eo.y4m",
128 ]
129 } 121 }
130 122
131 instrumentation_test_apk("AppRTCMobileTestStubbedVideoIO") { 123 instrumentation_test_apk("AppRTCMobileTestStubbedVideoIO") {
132 apk_name = "AppRTCMobileTestStubbedVideoIO" 124 apk_name = "AppRTCMobileTestStubbedVideoIO"
133 android_manifest = "androidtests/AndroidManifest.xml" 125 android_manifest = "androidtests/AndroidManifest.xml"
134 126
135 java_files = [ "androidtests/src/org/appspot/apprtc/test/ConnectActivityStub bedInputOutputTest.java" ] 127 java_files = [ "androidtests/src/org/appspot/apprtc/test/ConnectActivityStub bedInputOutputTest.java" ]
136 128
137 apk_under_test = ":AppRTCMobile" 129 apk_under_test = ":AppRTCMobile"
138 130
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 608 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
617 } 609 }
618 610
619 deps = [ 611 deps = [
620 "../p2p:libstunprober", 612 "../p2p:libstunprober",
621 "../p2p:rtc_p2p", 613 "../p2p:rtc_p2p",
622 "../system_wrappers:field_trial_default", 614 "../system_wrappers:field_trial_default",
623 ] 615 ]
624 } 616 }
625 } 617 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698