| 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 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 ] | 378 ] |
| 379 } | 379 } |
| 380 | 380 |
| 381 deps = [] | 381 deps = [] |
| 382 if (is_android) { | 382 if (is_android) { |
| 383 sources += [ | 383 sources += [ |
| 384 "test/androidtestinitializer.cc", | 384 "test/androidtestinitializer.cc", |
| 385 "test/androidtestinitializer.h", | 385 "test/androidtestinitializer.h", |
| 386 ] | 386 ] |
| 387 deps += [ | 387 deps += [ |
| 388 ":libjingle_peerconnection_java", |
| 388 ":libjingle_peerconnection_jni", | 389 ":libjingle_peerconnection_jni", |
| 389 "//testing/android/native_test:native_test_support", | 390 "//testing/android/native_test:native_test_support", |
| 390 ] | 391 ] |
| 391 } | 392 } |
| 392 | 393 |
| 393 deps += [ | 394 deps += [ |
| 394 ":libjingle_peerconnection", | 395 ":libjingle_peerconnection", |
| 395 "..:webrtc_common", | 396 "..:webrtc_common", |
| 396 "../base:rtc_base_tests_utils", | 397 "../base:rtc_base_tests_utils", |
| 397 "../media:rtc_unittest_main", | 398 "../media:rtc_unittest_main", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 | 436 |
| 436 shared_libraries = [ ":libjingle_peerconnection_so" ] | 437 shared_libraries = [ ":libjingle_peerconnection_so" ] |
| 437 } | 438 } |
| 438 | 439 |
| 439 android_resources("libjingle_peerconnection_android_unittest_resources") { | 440 android_resources("libjingle_peerconnection_android_unittest_resources") { |
| 440 resource_dirs = [ "androidtests/res" ] | 441 resource_dirs = [ "androidtests/res" ] |
| 441 custom_package = "org.webrtc" | 442 custom_package = "org.webrtc" |
| 442 } | 443 } |
| 443 } | 444 } |
| 444 } | 445 } |
| OLD | NEW |