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/webrtc.gni") | |
10 import("//build/config/android/config.gni") | |
11 import("//build/config/android/rules.gni") | |
12 | |
13 if (rtc_include_tests) { | |
14 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
| |
15 apk_name = "libjingle_peerconnection_android_unittest" | |
16 android_manifest = "AndroidManifest.xml" | |
17 | |
18 java_files = [ | |
19 "src/org/webrtc/Camera1CapturerUsingByteBufferTest.java", | |
20 "src/org/webrtc/Camera1CapturerUsingTextureTest.java", | |
21 "src/org/webrtc/Camera2CapturerTest.java", | |
22 "src/org/webrtc/CameraVideoCapturerTestFixtures.java", | |
23 "src/org/webrtc/EglRendererTest.java", | |
24 "src/org/webrtc/GlRectDrawerTest.java", | |
25 "src/org/webrtc/MediaCodecVideoEncoderTest.java", | |
26 "src/org/webrtc/NetworkMonitorTest.java", | |
27 "src/org/webrtc/PeerConnectionTest.java", | |
28 "src/org/webrtc/RendererCommonTest.java", | |
29 "src/org/webrtc/SurfaceTextureHelperTest.java", | |
30 "src/org/webrtc/SurfaceViewRendererOnMeasureTest.java", | |
31 "src/org/webrtc/WebRtcJniBootTest.java", | |
32 ] | |
33 | |
34 deps = [ | |
35 "../../../api:libjingle_peerconnection_java", | |
36 "../../../api:libjingle_peerconnection_metrics_default_java", | |
37 "../../../base:base_java", | |
38 "//base:base_java", | |
39 ] | |
40 | |
41 shared_libraries = [ "../../../api:libjingle_peerconnection_so" ] | |
42 } | |
43 } | |
OLD | NEW |