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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 rtc_static_library("rtc_base_approved") { | 84 rtc_static_library("rtc_base_approved") { |
85 defines = [] | 85 defines = [] |
86 libs = [] | 86 libs = [] |
87 deps = [] | 87 deps = [] |
88 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] | 88 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] |
89 | 89 |
90 sources = [ | 90 sources = [ |
91 "array_view.h", | 91 "array_view.h", |
92 "arraysize.h", | 92 "arraysize.h", |
93 "atomicops.h", | 93 "atomicops.h", |
| 94 "base64.cc", |
| 95 "base64.h", |
94 "bind.h", | 96 "bind.h", |
95 "bitbuffer.cc", | 97 "bitbuffer.cc", |
96 "bitbuffer.h", | 98 "bitbuffer.h", |
97 "buffer.h", | 99 "buffer.h", |
98 "bufferqueue.cc", | 100 "bufferqueue.cc", |
99 "bufferqueue.h", | 101 "bufferqueue.h", |
100 "bytebuffer.cc", | 102 "bytebuffer.cc", |
101 "bytebuffer.h", | 103 "bytebuffer.h", |
102 "byteorder.h", | 104 "byteorder.h", |
103 "checks.cc", | 105 "checks.cc", |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 "asyncresolverinterface.cc", | 381 "asyncresolverinterface.cc", |
380 "asyncresolverinterface.h", | 382 "asyncresolverinterface.h", |
381 "asyncsocket.cc", | 383 "asyncsocket.cc", |
382 "asyncsocket.h", | 384 "asyncsocket.h", |
383 "asynctcpsocket.cc", | 385 "asynctcpsocket.cc", |
384 "asynctcpsocket.h", | 386 "asynctcpsocket.h", |
385 "asyncudpsocket.cc", | 387 "asyncudpsocket.cc", |
386 "asyncudpsocket.h", | 388 "asyncudpsocket.h", |
387 "autodetectproxy.cc", | 389 "autodetectproxy.cc", |
388 "autodetectproxy.h", | 390 "autodetectproxy.h", |
389 "base64.cc", | |
390 "base64.h", | |
391 "common.cc", | 391 "common.cc", |
392 "common.h", | 392 "common.h", |
393 "crc32.cc", | 393 "crc32.cc", |
394 "crc32.h", | 394 "crc32.h", |
395 "cryptstring.cc", | 395 "cryptstring.cc", |
396 "cryptstring.h", | 396 "cryptstring.h", |
397 "diskcache.cc", | 397 "diskcache.cc", |
398 "diskcache.h", | 398 "diskcache.h", |
399 "filerotatingstream.cc", | 399 "filerotatingstream.cc", |
400 "filerotatingstream.h", | 400 "filerotatingstream.h", |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 "java/src/org/webrtc/Logging.java", | 798 "java/src/org/webrtc/Logging.java", |
799 "java/src/org/webrtc/Size.java", | 799 "java/src/org/webrtc/Size.java", |
800 "java/src/org/webrtc/ThreadUtils.java", | 800 "java/src/org/webrtc/ThreadUtils.java", |
801 ] | 801 ] |
802 | 802 |
803 deps = [ | 803 deps = [ |
804 "//base:base_java", | 804 "//base:base_java", |
805 ] | 805 ] |
806 } | 806 } |
807 } | 807 } |
OLD | NEW |