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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 if (is_android) { | 460 if (is_android) { |
461 instrumentation_test_apk("libjingle_peerconnection_android_unittest") { | 461 instrumentation_test_apk("libjingle_peerconnection_android_unittest") { |
462 apk_name = "libjingle_peerconnection_android_unittest" | 462 apk_name = "libjingle_peerconnection_android_unittest" |
463 android_manifest = "androidtests/AndroidManifest.xml" | 463 android_manifest = "androidtests/AndroidManifest.xml" |
464 | 464 |
465 java_files = [ | 465 java_files = [ |
466 "androidtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.java", | 466 "androidtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.java", |
467 "androidtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java", | 467 "androidtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java", |
468 "androidtests/src/org/webrtc/Camera2CapturerTest.java", | 468 "androidtests/src/org/webrtc/Camera2CapturerTest.java", |
469 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java", | 469 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java", |
| 470 "androidtests/src/org/webrtc/EglRendererTest.java", |
470 "androidtests/src/org/webrtc/GlRectDrawerTest.java", | 471 "androidtests/src/org/webrtc/GlRectDrawerTest.java", |
471 "androidtests/src/org/webrtc/MediaCodecVideoEncoderTest.java", | 472 "androidtests/src/org/webrtc/MediaCodecVideoEncoderTest.java", |
472 "androidtests/src/org/webrtc/NetworkMonitorTest.java", | 473 "androidtests/src/org/webrtc/NetworkMonitorTest.java", |
473 "androidtests/src/org/webrtc/PeerConnectionTest.java", | 474 "androidtests/src/org/webrtc/PeerConnectionTest.java", |
474 "androidtests/src/org/webrtc/RendererCommonTest.java", | 475 "androidtests/src/org/webrtc/RendererCommonTest.java", |
475 "androidtests/src/org/webrtc/SurfaceTextureHelperTest.java", | 476 "androidtests/src/org/webrtc/SurfaceTextureHelperTest.java", |
476 "androidtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java", | 477 "androidtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java", |
477 ] | 478 ] |
478 | 479 |
479 deps = [ | 480 deps = [ |
480 ":libjingle_peerconnection_android_unittest_resources", | 481 ":libjingle_peerconnection_android_unittest_resources", |
481 ":libjingle_peerconnection_java", | 482 ":libjingle_peerconnection_java", |
482 "../base:base_java", | 483 "../base:base_java", |
483 "//base:base_java", | 484 "//base:base_java", |
484 ] | 485 ] |
485 | 486 |
486 shared_libraries = [ ":libjingle_peerconnection_so" ] | 487 shared_libraries = [ ":libjingle_peerconnection_so" ] |
487 } | 488 } |
488 | 489 |
489 android_resources("libjingle_peerconnection_android_unittest_resources") { | 490 android_resources("libjingle_peerconnection_android_unittest_resources") { |
490 resource_dirs = [ "androidtests/res" ] | 491 resource_dirs = [ "androidtests/res" ] |
491 custom_package = "org.webrtc" | 492 custom_package = "org.webrtc" |
492 } | 493 } |
493 } | 494 } |
494 } | 495 } |
OLD | NEW |