| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 203 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 204 } | 204 } |
| 205 | 205 |
| 206 if (is_win) { | 206 if (is_win) { |
| 207 libs = [ "strmiids.lib" ] | 207 libs = [ "strmiids.lib" ] |
| 208 } | 208 } |
| 209 | 209 |
| 210 deps = [ | 210 deps = [ |
| 211 ":libjingle_peerconnection", | 211 ":libjingle_peerconnection", |
| 212 ":rtc_pc", | 212 ":rtc_pc", |
| 213 "../base:rtc_base_tests_main", |
| 213 "../base:rtc_base_tests_utils", | 214 "../base:rtc_base_tests_utils", |
| 214 "../media:rtc_unittest_main", | 215 "../media:rtc_media_tests_utils", |
| 215 "../system_wrappers:metrics_default", | 216 "../system_wrappers:metrics_default", |
| 216 ] | 217 ] |
| 217 | 218 |
| 218 if (rtc_build_libsrtp) { | 219 if (rtc_build_libsrtp) { |
| 219 deps += [ "//third_party/libsrtp" ] | 220 deps += [ "//third_party/libsrtp" ] |
| 220 } | 221 } |
| 221 | 222 |
| 222 if (is_android) { | 223 if (is_android) { |
| 223 deps += [ "//testing/android/native_test:native_test_support" ] | 224 deps += [ "//testing/android/native_test:native_test_support" ] |
| 224 } | 225 } |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 "//webrtc/sdk/android:libjingle_peerconnection_java", | 350 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 350 "//webrtc/sdk/android:libjingle_peerconnection_jni", | 351 "//webrtc/sdk/android:libjingle_peerconnection_jni", |
| 351 ] | 352 ] |
| 352 } | 353 } |
| 353 | 354 |
| 354 deps += [ | 355 deps += [ |
| 355 ":libjingle_peerconnection", | 356 ":libjingle_peerconnection", |
| 356 ":pc_test_utils", | 357 ":pc_test_utils", |
| 357 "..:webrtc_common", | 358 "..:webrtc_common", |
| 358 "../api:fakemetricsobserver", | 359 "../api:fakemetricsobserver", |
| 360 "../base:rtc_base_tests_main", |
| 359 "../base:rtc_base_tests_utils", | 361 "../base:rtc_base_tests_utils", |
| 360 "../media:rtc_unittest_main", | 362 "../media:rtc_media_tests_utils", |
| 361 "../pc:rtc_pc", | 363 "../pc:rtc_pc", |
| 362 "../system_wrappers:metrics_default", | 364 "../system_wrappers:metrics_default", |
| 363 "//testing/gmock", | 365 "//testing/gmock", |
| 364 ] | 366 ] |
| 365 | 367 |
| 366 if (is_android) { | 368 if (is_android) { |
| 367 deps += [ "//testing/android/native_test:native_test_support" ] | 369 deps += [ "//testing/android/native_test:native_test_support" ] |
| 368 | 370 |
| 369 shard_timeout = 900 | 371 shard_timeout = 900 |
| 370 } | 372 } |
| 371 } | 373 } |
| 372 } | 374 } |
| OLD | NEW |