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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 "fileutils.h", | 317 "fileutils.h", |
318 "firewallsocketserver.cc", | 318 "firewallsocketserver.cc", |
319 "firewallsocketserver.h", | 319 "firewallsocketserver.h", |
320 "flags.cc", | 320 "flags.cc", |
321 "flags.h", | 321 "flags.h", |
322 "gunit_prod.h", | 322 "gunit_prod.h", |
323 "helpers.cc", | 323 "helpers.cc", |
324 "helpers.h", | 324 "helpers.h", |
325 "httpbase.cc", | 325 "httpbase.cc", |
326 "httpbase.h", | 326 "httpbase.h", |
| 327 "httpclient.cc", |
| 328 "httpclient.h", |
327 "httpcommon-inl.h", | 329 "httpcommon-inl.h", |
328 "httpcommon.cc", | 330 "httpcommon.cc", |
329 "httpcommon.h", | 331 "httpcommon.h", |
| 332 "httprequest.cc", |
| 333 "httprequest.h", |
330 "ipaddress.cc", | 334 "ipaddress.cc", |
331 "ipaddress.h", | 335 "ipaddress.h", |
332 "linked_ptr.h", | 336 "linked_ptr.h", |
333 "messagedigest.cc", | 337 "messagedigest.cc", |
334 "messagedigest.h", | 338 "messagedigest.h", |
335 "messagehandler.cc", | 339 "messagehandler.cc", |
336 "messagehandler.h", | 340 "messagehandler.h", |
337 "messagequeue.cc", | 341 "messagequeue.cc", |
338 "messagequeue.h", | 342 "messagequeue.h", |
339 "nethelpers.cc", | 343 "nethelpers.cc", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 "sigslot.h", | 383 "sigslot.h", |
380 "sigslotrepeater.h", | 384 "sigslotrepeater.h", |
381 "socket.h", | 385 "socket.h", |
382 "socketadapters.cc", | 386 "socketadapters.cc", |
383 "socketadapters.h", | 387 "socketadapters.h", |
384 "socketaddress.cc", | 388 "socketaddress.cc", |
385 "socketaddress.h", | 389 "socketaddress.h", |
386 "socketaddresspair.cc", | 390 "socketaddresspair.cc", |
387 "socketaddresspair.h", | 391 "socketaddresspair.h", |
388 "socketfactory.h", | 392 "socketfactory.h", |
| 393 "socketpool.cc", |
| 394 "socketpool.h", |
389 "socketserver.h", | 395 "socketserver.h", |
390 "socketstream.cc", | 396 "socketstream.cc", |
391 "socketstream.h", | 397 "socketstream.h", |
392 "ssladapter.cc", | 398 "ssladapter.cc", |
393 "ssladapter.h", | 399 "ssladapter.h", |
394 "sslfingerprint.cc", | 400 "sslfingerprint.cc", |
395 "sslfingerprint.h", | 401 "sslfingerprint.h", |
396 "sslidentity.cc", | 402 "sslidentity.cc", |
397 "sslidentity.h", | 403 "sslidentity.h", |
398 "sslsocketfactory.cc", | 404 "sslsocketfactory.cc", |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 "java/src/org/webrtc/Logging.java", | 738 "java/src/org/webrtc/Logging.java", |
733 "java/src/org/webrtc/Size.java", | 739 "java/src/org/webrtc/Size.java", |
734 "java/src/org/webrtc/ThreadUtils.java", | 740 "java/src/org/webrtc/ThreadUtils.java", |
735 ] | 741 ] |
736 | 742 |
737 deps = [ | 743 deps = [ |
738 "//base:base_java", | 744 "//base:base_java", |
739 ] | 745 ] |
740 } | 746 } |
741 } | 747 } |
OLD | NEW |