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

Unified Diff: webrtc/sdk/android/instrumentationtests/BUILD.gn

Issue 2541823002: Move webrtc/api/androidtests to webrtc/sdk/android/instrumentationtests (Closed)
Patch Set: Make include for webrtc.gni absolute Created 4 years 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/sdk/android/instrumentationtests/BUILD.gn
diff --git a/webrtc/sdk/android/instrumentationtests/BUILD.gn b/webrtc/sdk/android/instrumentationtests/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..ab193b462ec6d31000d88beaf7a81982a0fa3646
--- /dev/null
+++ b/webrtc/sdk/android/instrumentationtests/BUILD.gn
@@ -0,0 +1,51 @@
+# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
+#
+# Use of this source code is governed by a BSD-style license
+# that can be found in the LICENSE file in the root of the source
+# tree. An additional intellectual property rights grant can be found
+# in the file PATENTS. All contributing project authors may
+# be found in the AUTHORS file in the root of the source tree.
+
+import("//build/config/android/config.gni")
+import("//build/config/android/rules.gni")
+import("//webrtc/build/webrtc.gni")
+
+group("instrumentationtests") {
+ # This target shall build all targets in instrumentationtests.
+ testonly = true
+ public_deps = []
+
+ public_deps += [ ":libjingle_peerconnection_android_unittest" ]
+}
+
+if (rtc_include_tests) {
+ instrumentation_test_apk("libjingle_peerconnection_android_unittest") {
+ apk_name = "libjingle_peerconnection_android_unittest"
+ android_manifest = "AndroidManifest.xml"
+
+ java_files = [
+ "src/org/webrtc/Camera1CapturerUsingByteBufferTest.java",
+ "src/org/webrtc/Camera1CapturerUsingTextureTest.java",
+ "src/org/webrtc/Camera2CapturerTest.java",
+ "src/org/webrtc/CameraVideoCapturerTestFixtures.java",
+ "src/org/webrtc/EglRendererTest.java",
+ "src/org/webrtc/GlRectDrawerTest.java",
+ "src/org/webrtc/MediaCodecVideoEncoderTest.java",
+ "src/org/webrtc/NetworkMonitorTest.java",
+ "src/org/webrtc/PeerConnectionTest.java",
+ "src/org/webrtc/RendererCommonTest.java",
+ "src/org/webrtc/SurfaceTextureHelperTest.java",
+ "src/org/webrtc/SurfaceViewRendererOnMeasureTest.java",
+ "src/org/webrtc/WebRtcJniBootTest.java",
+ ]
+
+ deps = [
+ "../../../api:libjingle_peerconnection_java",
+ "../../../api:libjingle_peerconnection_metrics_default_java",
+ "../../../base:base_java",
+ "//base:base_java",
+ ]
+
+ shared_libraries = [ "../../../api:libjingle_peerconnection_so" ]
+ }
+}
« no previous file with comments | « webrtc/sdk/android/instrumentationtests/AndroidManifest.xml ('k') | webrtc/sdk/android/instrumentationtests/ant.properties » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698