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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 86 |
87 # The subset of rtc_base approved for use outside of libjingle. | 87 # The subset of rtc_base approved for use outside of libjingle. |
88 rtc_static_library("rtc_base_approved") { | 88 rtc_static_library("rtc_base_approved") { |
89 defines = [] | 89 defines = [] |
90 libs = [] | 90 libs = [] |
91 deps = [] | 91 deps = [] |
92 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] | 92 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] |
93 | 93 |
94 sources = [ | 94 sources = [ |
95 "array_view.h", | 95 "array_view.h", |
| 96 "arraysize.h", |
96 "atomicops.h", | 97 "atomicops.h", |
97 "bind.h", | 98 "bind.h", |
98 "bitbuffer.cc", | 99 "bitbuffer.cc", |
99 "bitbuffer.h", | 100 "bitbuffer.h", |
100 "buffer.h", | 101 "buffer.h", |
101 "bufferqueue.cc", | 102 "bufferqueue.cc", |
102 "bufferqueue.h", | 103 "bufferqueue.h", |
103 "bytebuffer.cc", | 104 "bytebuffer.cc", |
104 "bytebuffer.h", | 105 "bytebuffer.h", |
105 "byteorder.h", | 106 "byteorder.h", |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 public_configs = [ | 282 public_configs = [ |
282 ":openssl_config", | 283 ":openssl_config", |
283 ":rtc_base_config", | 284 ":rtc_base_config", |
284 ] | 285 ] |
285 | 286 |
286 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] | 287 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] |
287 defines = [ "LOGGING=1" ] | 288 defines = [ "LOGGING=1" ] |
288 | 289 |
289 sources = [ | 290 sources = [ |
290 "applefilesystem.mm", | 291 "applefilesystem.mm", |
291 "arraysize.h", | |
292 "asyncfile.cc", | 292 "asyncfile.cc", |
293 "asyncfile.h", | 293 "asyncfile.h", |
294 "asyncinvoker-inl.h", | 294 "asyncinvoker-inl.h", |
295 "asyncinvoker.cc", | 295 "asyncinvoker.cc", |
296 "asyncinvoker.h", | 296 "asyncinvoker.h", |
297 "asyncpacketsocket.cc", | 297 "asyncpacketsocket.cc", |
298 "asyncpacketsocket.h", | 298 "asyncpacketsocket.h", |
299 "asyncresolverinterface.cc", | 299 "asyncresolverinterface.cc", |
300 "asyncresolverinterface.h", | 300 "asyncresolverinterface.h", |
301 "asyncsocket.cc", | 301 "asyncsocket.cc", |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
743 "java/src/org/webrtc/Logging.java", | 743 "java/src/org/webrtc/Logging.java", |
744 "java/src/org/webrtc/Size.java", | 744 "java/src/org/webrtc/Size.java", |
745 "java/src/org/webrtc/ThreadUtils.java", | 745 "java/src/org/webrtc/ThreadUtils.java", |
746 ] | 746 ] |
747 | 747 |
748 deps = [ | 748 deps = [ |
749 "//base:base_java", | 749 "//base:base_java", |
750 ] | 750 ] |
751 } | 751 } |
752 } | 752 } |
OLD | NEW |