| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 } | 219 } |
| 220 } | 220 } |
| 221 | 221 |
| 222 rtc_source_set("libjingle_peerconnection") { | 222 rtc_source_set("libjingle_peerconnection") { |
| 223 public_deps = [ | 223 public_deps = [ |
| 224 ":create_pc_factory", | 224 ":create_pc_factory", |
| 225 ":peerconnection", | 225 ":peerconnection", |
| 226 "../api:libjingle_peerconnection_api", | 226 "../api:libjingle_peerconnection_api", |
| 227 ] | 227 ] |
| 228 | 228 |
| 229 # This target always link with a default implementation |
| 230 # regardless of the flag |rtc_link_task_queue_impl|. |
| 231 deps = [ |
| 232 "../rtc_base:rtc_task_queue_impl", |
| 233 ] |
| 234 |
| 229 if (rtc_use_quic) { | 235 if (rtc_use_quic) { |
| 230 sources += [ | 236 sources += [ |
| 231 "quicdatachannel.cc", | 237 "quicdatachannel.cc", |
| 232 "quicdatachannel.h", | 238 "quicdatachannel.h", |
| 233 "quicdatatransport.cc", | 239 "quicdatatransport.cc", |
| 234 "quicdatatransport.h", | 240 "quicdatatransport.h", |
| 235 ] | 241 ] |
| 236 deps += [ "//third_party/libquic" ] | 242 deps += [ "//third_party/libquic" ] |
| 237 public_deps = [ | 243 public_deps = [ |
| 238 "//third_party/libquic", | 244 "//third_party/libquic", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 "//testing/gmock", | 463 "//testing/gmock", |
| 458 ] | 464 ] |
| 459 | 465 |
| 460 if (is_android) { | 466 if (is_android) { |
| 461 deps += [ "//testing/android/native_test:native_test_support" ] | 467 deps += [ "//testing/android/native_test:native_test_support" ] |
| 462 | 468 |
| 463 shard_timeout = 900 | 469 shard_timeout = 900 |
| 464 } | 470 } |
| 465 } | 471 } |
| 466 } | 472 } |
| OLD | NEW |