| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ] | 424 ] |
| 425 } | 425 } |
| 426 | 426 |
| 427 deps = [] | 427 deps = [] |
| 428 if (is_android) { | 428 if (is_android) { |
| 429 sources += [ | 429 sources += [ |
| 430 "test/androidtestinitializer.cc", | 430 "test/androidtestinitializer.cc", |
| 431 "test/androidtestinitializer.h", | 431 "test/androidtestinitializer.h", |
| 432 ] | 432 ] |
| 433 deps += [ | 433 deps += [ |
| 434 "../sdk/android:libjingle_peerconnection_java", |
| 435 "../sdk/android:libjingle_peerconnection_jni", |
| 434 "//testing/android/native_test:native_test_support", | 436 "//testing/android/native_test:native_test_support", |
| 435 "//webrtc/sdk/android:libjingle_peerconnection_java", | |
| 436 "//webrtc/sdk/android:libjingle_peerconnection_jni", | |
| 437 ] | 437 ] |
| 438 } | 438 } |
| 439 | 439 |
| 440 deps += [ | 440 deps += [ |
| 441 ":libjingle_peerconnection", | 441 ":libjingle_peerconnection", |
| 442 ":pc_test_utils", | 442 ":pc_test_utils", |
| 443 "..:webrtc_common", | 443 "..:webrtc_common", |
| 444 "../api:fakemetricsobserver", | 444 "../api:fakemetricsobserver", |
| 445 "../base:rtc_base_tests_main", | 445 "../base:rtc_base_tests_main", |
| 446 "../base:rtc_base_tests_utils", | 446 "../base:rtc_base_tests_utils", |
| 447 "../media:rtc_media_tests_utils", | 447 "../media:rtc_media_tests_utils", |
| 448 "../pc:rtc_pc", | 448 "../pc:rtc_pc", |
| 449 "../system_wrappers:metrics_default", | 449 "../system_wrappers:metrics_default", |
| 450 "../test:audio_codec_mocks", | 450 "../test:audio_codec_mocks", |
| 451 "//testing/gmock", | 451 "//testing/gmock", |
| 452 ] | 452 ] |
| 453 | 453 |
| 454 if (is_android) { | 454 if (is_android) { |
| 455 deps += [ "//testing/android/native_test:native_test_support" ] | 455 deps += [ "//testing/android/native_test:native_test_support" ] |
| 456 | 456 |
| 457 shard_timeout = 900 | 457 shard_timeout = 900 |
| 458 } | 458 } |
| 459 } | 459 } |
| 460 } | 460 } |
| OLD | NEW |