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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 configs += [ ":libjingle_peerconnection_warnings_config" ] | 139 configs += [ ":libjingle_peerconnection_warnings_config" ] |
140 | 140 |
141 if (!build_with_chromium && is_clang) { | 141 if (!build_with_chromium && is_clang) { |
142 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 142 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
143 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 143 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
144 } | 144 } |
145 | 145 |
146 deps = [ | 146 deps = [ |
147 ":rtc_pc", | 147 ":rtc_pc", |
148 "../api:call_api", | 148 "../api:call_api", |
149 "../api:libjingle_peerconnection_api", | |
150 "../api:rtc_stats_api", | 149 "../api:rtc_stats_api", |
151 "../call", | 150 "../call", |
152 "../media", | 151 "../media", |
153 "../stats", | 152 "../stats", |
154 ] | 153 ] |
155 | 154 |
| 155 public_deps = [ |
| 156 "../api:libjingle_peerconnection_api", |
| 157 ] |
| 158 |
156 if (rtc_use_quic) { | 159 if (rtc_use_quic) { |
157 sources += [ | 160 sources += [ |
158 "quicdatachannel.cc", | 161 "quicdatachannel.cc", |
159 "quicdatachannel.h", | 162 "quicdatachannel.h", |
160 "quicdatatransport.cc", | 163 "quicdatatransport.cc", |
161 "quicdatatransport.h", | 164 "quicdatatransport.h", |
162 ] | 165 ] |
163 deps += [ "//third_party/libquic" ] | 166 deps += [ "//third_party/libquic" ] |
164 public_deps = [ | 167 public_deps = [ |
165 "//third_party/libquic", | 168 "//third_party/libquic", |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 "//testing/gmock", | 342 "//testing/gmock", |
340 ] | 343 ] |
341 | 344 |
342 if (is_android) { | 345 if (is_android) { |
343 deps += [ "//testing/android/native_test:native_test_support" ] | 346 deps += [ "//testing/android/native_test:native_test_support" ] |
344 | 347 |
345 shard_timeout = 900 | 348 shard_timeout = 900 |
346 } | 349 } |
347 } | 350 } |
348 } | 351 } |
OLD | NEW |