OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 ] | 187 ] |
188 | 188 |
189 defines = [ "LOGGING=1" ] | 189 defines = [ "LOGGING=1" ] |
190 | 190 |
191 sources = [ | 191 sources = [ |
192 "arraysize.h", | 192 "arraysize.h", |
193 "asyncfile.cc", | 193 "asyncfile.cc", |
194 "asyncfile.h", | 194 "asyncfile.h", |
195 "asynchttprequest.cc", | 195 "asynchttprequest.cc", |
196 "asynchttprequest.h", | 196 "asynchttprequest.h", |
| 197 "asyncinvoker-inl.h", |
| 198 "asyncinvoker.cc", |
| 199 "asyncinvoker.h", |
197 "asyncpacketsocket.cc", | 200 "asyncpacketsocket.cc", |
198 "asyncpacketsocket.h", | 201 "asyncpacketsocket.h", |
199 "asyncresolverinterface.cc", | 202 "asyncresolverinterface.cc", |
200 "asyncresolverinterface.h", | 203 "asyncresolverinterface.h", |
201 "asyncsocket.cc", | 204 "asyncsocket.cc", |
202 "asyncsocket.h", | 205 "asyncsocket.h", |
203 "asynctcpsocket.cc", | 206 "asynctcpsocket.cc", |
204 "asynctcpsocket.h", | 207 "asynctcpsocket.h", |
205 "asyncudpsocket.cc", | 208 "asyncudpsocket.cc", |
206 "asyncudpsocket.h", | 209 "asyncudpsocket.h", |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 } | 346 } |
344 | 347 |
345 include_dirs = [ | 348 include_dirs = [ |
346 "../overrides", | 349 "../overrides", |
347 "../../boringssl/src/include", | 350 "../../boringssl/src/include", |
348 ] | 351 ] |
349 | 352 |
350 public_configs += [ ":rtc_base_chromium_config" ] | 353 public_configs += [ ":rtc_base_chromium_config" ] |
351 } else { | 354 } else { |
352 sources += [ | 355 sources += [ |
353 "asyncinvoker-inl.h", | |
354 "asyncinvoker.cc", | |
355 "asyncinvoker.h", | |
356 "bandwidthsmoother.cc", | 356 "bandwidthsmoother.cc", |
357 "bandwidthsmoother.h", | 357 "bandwidthsmoother.h", |
358 "bind.h", | 358 "bind.h", |
359 "bind.h.pump", | 359 "bind.h.pump", |
360 "callback.h", | 360 "callback.h", |
361 "callback.h.pump", | 361 "callback.h.pump", |
362 "fileutils_mock.h", | 362 "fileutils_mock.h", |
363 "genericslot.h", | 363 "genericslot.h", |
364 "genericslot.h.pump", | 364 "genericslot.h.pump", |
365 "httpserver.cc", | 365 "httpserver.cc", |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 defines += [ "CARBON_DEPRECATED=YES" ] | 623 defines += [ "CARBON_DEPRECATED=YES" ] |
624 } | 624 } |
625 | 625 |
626 if (is_linux || is_android) { | 626 if (is_linux || is_android) { |
627 sources += [ | 627 sources += [ |
628 "linux.cc", | 628 "linux.cc", |
629 "linux.h", | 629 "linux.h", |
630 ] | 630 ] |
631 } | 631 } |
632 } | 632 } |
OLD | NEW |