| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 "//testing/gmock", | 458 "//testing/gmock", |
| 459 ] | 459 ] |
| 460 | 460 |
| 461 if (is_android) { | 461 if (is_android) { |
| 462 deps += [ "//testing/android/native_test:native_test_support" ] | 462 deps += [ "//testing/android/native_test:native_test_support" ] |
| 463 | 463 |
| 464 shard_timeout = 900 | 464 shard_timeout = 900 |
| 465 } | 465 } |
| 466 } | 466 } |
| 467 | 467 |
| 468 rtc_source_set("mock_audio_mixer") { |
| 469 testonly = true |
| 470 sources = [ |
| 471 "test/mock_audio_mixer.h", |
| 472 ] |
| 473 |
| 474 public_deps = [ |
| 475 ":audio_mixer_api", |
| 476 ] |
| 477 |
| 478 deps = [ |
| 479 "//testing/gmock", |
| 480 ] |
| 481 } |
| 482 |
| 468 if (is_android) { | 483 if (is_android) { |
| 469 instrumentation_test_apk("libjingle_peerconnection_android_unittest") { | 484 instrumentation_test_apk("libjingle_peerconnection_android_unittest") { |
| 470 apk_name = "libjingle_peerconnection_android_unittest" | 485 apk_name = "libjingle_peerconnection_android_unittest" |
| 471 android_manifest = "androidtests/AndroidManifest.xml" | 486 android_manifest = "androidtests/AndroidManifest.xml" |
| 472 | 487 |
| 473 java_files = [ | 488 java_files = [ |
| 474 "androidtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.java", | 489 "androidtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.java", |
| 475 "androidtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java", | 490 "androidtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java", |
| 476 "androidtests/src/org/webrtc/Camera2CapturerTest.java", | 491 "androidtests/src/org/webrtc/Camera2CapturerTest.java", |
| 477 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java", | 492 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 489 deps = [ | 504 deps = [ |
| 490 ":libjingle_peerconnection_java", | 505 ":libjingle_peerconnection_java", |
| 491 "../base:base_java", | 506 "../base:base_java", |
| 492 "//base:base_java", | 507 "//base:base_java", |
| 493 ] | 508 ] |
| 494 | 509 |
| 495 shared_libraries = [ ":libjingle_peerconnection_so" ] | 510 shared_libraries = [ ":libjingle_peerconnection_so" ] |
| 496 } | 511 } |
| 497 } | 512 } |
| 498 } | 513 } |
| OLD | NEW |