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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 "platform_file.cc", | 134 "platform_file.cc", |
135 "platform_file.h", | 135 "platform_file.h", |
136 "platform_thread.cc", | 136 "platform_thread.cc", |
137 "platform_thread.h", | 137 "platform_thread.h", |
138 "platform_thread_types.h", | 138 "platform_thread_types.h", |
139 "random.cc", | 139 "random.cc", |
140 "random.h", | 140 "random.h", |
141 "rate_statistics.cc", | 141 "rate_statistics.cc", |
142 "rate_statistics.h", | 142 "rate_statistics.h", |
143 "refcount.h", | 143 "refcount.h", |
| 144 "safe_conversions.h", |
| 145 "safe_conversions_impl.h", |
144 "scoped_ptr.h", | 146 "scoped_ptr.h", |
145 "scoped_ref_ptr.h", | 147 "scoped_ref_ptr.h", |
146 "stringencode.cc", | 148 "stringencode.cc", |
147 "stringencode.h", | 149 "stringencode.h", |
148 "stringutils.cc", | 150 "stringutils.cc", |
149 "stringutils.h", | 151 "stringutils.h", |
150 "systeminfo.cc", | 152 "systeminfo.cc", |
151 "systeminfo.h", | 153 "systeminfo.h", |
152 "template_util.h", | 154 "template_util.h", |
153 "thread_annotations.h", | 155 "thread_annotations.h", |
(...skipping 18 matching lines...) Expand all Loading... |
172 "logging.cc", | 174 "logging.cc", |
173 "logging.h", | 175 "logging.h", |
174 ] | 176 ] |
175 } | 177 } |
176 } | 178 } |
177 | 179 |
178 static_library("rtc_base") { | 180 static_library("rtc_base") { |
179 cflags = [] | 181 cflags = [] |
180 cflags_cc = [] | 182 cflags_cc = [] |
181 libs = [] | 183 libs = [] |
| 184 deps = [] |
| 185 public_deps = [ |
| 186 ":rtc_base_approved", |
| 187 ] |
182 | 188 |
183 configs += [ | 189 configs += [ |
184 "..:common_config", | 190 "..:common_config", |
185 ":rtc_base_config", | 191 ":rtc_base_config", |
186 ] | 192 ] |
187 | 193 |
188 public_configs = [ | 194 public_configs = [ |
189 "..:common_inherited_config", | 195 "..:common_inherited_config", |
190 ":rtc_base_config", | 196 ":rtc_base_config", |
191 ] | 197 ] |
192 | 198 |
193 defines = [ "LOGGING=1" ] | 199 defines = [ "LOGGING=1" ] |
194 | 200 |
195 deps = [ | |
196 ":safe_numerics", | |
197 ] | |
198 public_deps = [ | |
199 ":rtc_base_approved", | |
200 ] | |
201 | |
202 sources = [ | 201 sources = [ |
203 "arraysize.h", | 202 "arraysize.h", |
204 "asyncfile.cc", | 203 "asyncfile.cc", |
205 "asyncfile.h", | 204 "asyncfile.h", |
206 "asyncinvoker-inl.h", | 205 "asyncinvoker-inl.h", |
207 "asyncinvoker.cc", | 206 "asyncinvoker.cc", |
208 "asyncinvoker.h", | 207 "asyncinvoker.h", |
209 "asyncpacketsocket.cc", | 208 "asyncpacketsocket.cc", |
210 "asyncpacketsocket.h", | 209 "asyncpacketsocket.h", |
211 "asyncresolverinterface.cc", | 210 "asyncresolverinterface.cc", |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 "objc/RTCTracing.mm", | 650 "objc/RTCTracing.mm", |
652 ] | 651 ] |
653 } | 652 } |
654 } | 653 } |
655 | 654 |
656 source_set("gtest_prod") { | 655 source_set("gtest_prod") { |
657 sources = [ | 656 sources = [ |
658 "gtest_prod_util.h", | 657 "gtest_prod_util.h", |
659 ] | 658 ] |
660 } | 659 } |
661 | |
662 # GYP version: webrtc/base/base.gyp:safe_numerics | |
663 source_set("safe_numerics") { | |
664 deps = [ | |
665 ":rtc_base_approved", | |
666 ] | |
667 sources = [ | |
668 "numerics/safe_conversions.h", | |
669 "numerics/safe_conversions_impl.h", | |
670 "numerics/safe_math.h", | |
671 "numerics/safe_math_impl.h", | |
672 ] | |
673 } | |
OLD | NEW |