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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 include_dirs = [ rtc_ssl_root ] | 87 include_dirs = [ rtc_ssl_root ] |
88 } | 88 } |
89 } | 89 } |
90 | 90 |
91 # The subset of rtc_base approved for use outside of libjingle. | 91 # The subset of rtc_base approved for use outside of libjingle. |
92 static_library("rtc_base_approved") { | 92 static_library("rtc_base_approved") { |
93 configs += [ "..:common_config" ] | 93 configs += [ "..:common_config" ] |
94 public_configs = [ "..:common_inherited_config" ] | 94 public_configs = [ "..:common_inherited_config" ] |
95 | 95 |
96 sources = [ | 96 sources = [ |
| 97 "array_view.h", |
97 "atomicops.h", | 98 "atomicops.h", |
98 "bitbuffer.cc", | 99 "bitbuffer.cc", |
99 "bitbuffer.h", | 100 "bitbuffer.h", |
100 "buffer.cc", | 101 "buffer.cc", |
101 "buffer.h", | 102 "buffer.h", |
102 "bufferqueue.cc", | 103 "bufferqueue.cc", |
103 "bufferqueue.h", | 104 "bufferqueue.h", |
104 "bytebuffer.cc", | 105 "bytebuffer.cc", |
105 "bytebuffer.h", | 106 "bytebuffer.h", |
106 "byteorder.h", | 107 "byteorder.h", |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 "linux.cc", | 587 "linux.cc", |
587 "linux.h", | 588 "linux.h", |
588 ] | 589 ] |
589 } | 590 } |
590 | 591 |
591 if (is_nacl) { | 592 if (is_nacl) { |
592 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 593 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
593 defines += [ "timezone=_timezone" ] | 594 defines += [ "timezone=_timezone" ] |
594 } | 595 } |
595 } | 596 } |
OLD | NEW |