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