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

Side by Side Diff: webrtc/sdk/android/instrumentationtests/BUILD.gn

Issue 2547483003: Move /webrtc/api/android files to /webrtc/sdk/android (Closed)
Patch Set: Move to api folder under Android instead of src 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 unified diff | Download patch
« no previous file with comments | « webrtc/sdk/android/api/org/webrtc/YuvConverter.java ('k') | webrtc/sdk/android/src/jni/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « webrtc/sdk/android/api/org/webrtc/YuvConverter.java ('k') | webrtc/sdk/android/src/jni/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698