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

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

Issue 2541823002: Move webrtc/api/androidtests to webrtc/sdk/android/instrumentationtests (Closed)
Patch Set: 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..0523b39bef8d3ffee5f828fd456197bd61bc304c
--- /dev/null
+++ b/webrtc/sdk/android/instrumentationtests/BUILD.gn
@@ -0,0 +1,43 @@
+# 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/webrtc.gni")
+import("//build/config/android/config.gni")
+import("//build/config/android/rules.gni")
+
+if (rtc_include_tests) {
+ instrumentation_test_apk("libjingle_peerconnection_android_unittest") {
sakal 2016/11/30 14:21:30 Most BUILD files should have a target with the sam
kjellander_webrtc 2016/11/30 14:37:08 I agree we shouldn't have neither 'android' or 'in
magjed_webrtc 2016/11/30 15:15:36 I would also prefer to have smaller BUILD files cl
kjellander_webrtc 2016/11/30 18:41:54 I can't think of any significant pros and cons so
+ 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" ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698