OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 "androidtests/src/org/webrtc/Camera2CapturerTest.java", | 475 "androidtests/src/org/webrtc/Camera2CapturerTest.java", |
476 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java", | 476 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java", |
477 "androidtests/src/org/webrtc/EglRendererTest.java", | 477 "androidtests/src/org/webrtc/EglRendererTest.java", |
478 "androidtests/src/org/webrtc/GlRectDrawerTest.java", | 478 "androidtests/src/org/webrtc/GlRectDrawerTest.java", |
479 "androidtests/src/org/webrtc/MediaCodecVideoEncoderTest.java", | 479 "androidtests/src/org/webrtc/MediaCodecVideoEncoderTest.java", |
480 "androidtests/src/org/webrtc/NetworkMonitorTest.java", | 480 "androidtests/src/org/webrtc/NetworkMonitorTest.java", |
481 "androidtests/src/org/webrtc/PeerConnectionTest.java", | 481 "androidtests/src/org/webrtc/PeerConnectionTest.java", |
482 "androidtests/src/org/webrtc/RendererCommonTest.java", | 482 "androidtests/src/org/webrtc/RendererCommonTest.java", |
483 "androidtests/src/org/webrtc/SurfaceTextureHelperTest.java", | 483 "androidtests/src/org/webrtc/SurfaceTextureHelperTest.java", |
484 "androidtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java", | 484 "androidtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java", |
| 485 "androidtests/src/org/webrtc/WebRtcJniBootTest.java", |
485 ] | 486 ] |
486 | 487 |
487 deps = [ | 488 deps = [ |
488 ":libjingle_peerconnection_android_unittest_resources", | |
489 ":libjingle_peerconnection_java", | 489 ":libjingle_peerconnection_java", |
490 "../base:base_java", | 490 "../base:base_java", |
491 "//base:base_java", | 491 "//base:base_java", |
492 ] | 492 ] |
493 | 493 |
494 shared_libraries = [ ":libjingle_peerconnection_so" ] | 494 shared_libraries = [ ":libjingle_peerconnection_so" ] |
495 } | 495 } |
496 | |
497 android_resources("libjingle_peerconnection_android_unittest_resources") { | |
498 resource_dirs = [ "androidtests/res" ] | |
499 custom_package = "org.webrtc" | |
500 } | |
501 } | 496 } |
502 } | 497 } |
OLD | NEW |