| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | |
| 2 # | |
| 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 | |
| 5 # tree. An additional intellectual property rights grant can be found | |
| 6 # in the file PATENTS. All contributing project authors may | |
| 7 # be found in the AUTHORS file in the root of the source tree. | |
| 8 | |
| 9 import("//build/config/android/config.gni") | |
| 10 import("//build/config/android/rules.gni") | |
| 11 import("//webrtc/build/webrtc.gni") | |
| 12 | |
| 13 group("instrumentationtests") { | |
| 14 # This target shall build all targets in instrumentationtests. | |
| 15 testonly = true | |
| 16 public_deps = [] | |
| 17 | |
| 18 public_deps += [ ":libjingle_peerconnection_android_unittest" ] | |
| 19 } | |
| 20 | |
| 21 if (rtc_include_tests) { | |
| 22 instrumentation_test_apk("libjingle_peerconnection_android_unittest") { | |
| 23 apk_name = "libjingle_peerconnection_android_unittest" | |
| 24 android_manifest = "AndroidManifest.xml" | |
| 25 | |
| 26 java_files = [ | |
| 27 "src/org/webrtc/Camera1CapturerUsingByteBufferTest.java", | |
| 28 "src/org/webrtc/Camera1CapturerUsingTextureTest.java", | |
| 29 "src/org/webrtc/Camera2CapturerTest.java", | |
| 30 "src/org/webrtc/CameraVideoCapturerTestFixtures.java", | |
| 31 "src/org/webrtc/EglRendererTest.java", | |
| 32 "src/org/webrtc/GlRectDrawerTest.java", | |
| 33 "src/org/webrtc/MediaCodecVideoEncoderTest.java", | |
| 34 "src/org/webrtc/NetworkMonitorTest.java", | |
| 35 "src/org/webrtc/PeerConnectionTest.java", | |
| 36 "src/org/webrtc/RendererCommonTest.java", | |
| 37 "src/org/webrtc/SurfaceTextureHelperTest.java", | |
| 38 "src/org/webrtc/SurfaceViewRendererOnMeasureTest.java", | |
| 39 "src/org/webrtc/WebRtcJniBootTest.java", | |
| 40 ] | |
| 41 | |
| 42 deps = [ | |
| 43 "../../../api:libjingle_peerconnection_java", | |
| 44 "../../../api:libjingle_peerconnection_metrics_default_java", | |
| 45 "../../../base:base_java", | |
| 46 "//base:base_java", | |
| 47 ] | |
| 48 | |
| 49 shared_libraries = [ "../../../api:libjingle_peerconnection_so" ] | |
| 50 } | |
| 51 } | |
| OLD | NEW |