Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(509)

Side by Side Diff: webrtc/base/BUILD.gn

Issue 1789463002: Update examples GYP to avoid rtc_base_approved warning. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/base/base.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 "bitbuffer.h", 109 "bitbuffer.h",
110 "buffer.cc", 110 "buffer.cc",
111 "buffer.h", 111 "buffer.h",
112 "bufferqueue.cc", 112 "bufferqueue.cc",
113 "bufferqueue.h", 113 "bufferqueue.h",
114 "bytebuffer.cc", 114 "bytebuffer.cc",
115 "bytebuffer.h", 115 "bytebuffer.h",
116 "byteorder.h", 116 "byteorder.h",
117 "checks.cc", 117 "checks.cc",
118 "checks.h", 118 "checks.h",
119 "common.cc",
tommi 2016/03/11 06:43:46 I would prefer not to add common.h and .cc to base
tkchin_webrtc 2016/03/12 00:56:15 Thanks - I'll look into that.
120 "common.h",
119 "constructormagic.h", 121 "constructormagic.h",
120 "criticalsection.cc", 122 "criticalsection.cc",
121 "criticalsection.h", 123 "criticalsection.h",
122 "deprecation.h", 124 "deprecation.h",
123 "event.cc", 125 "event.cc",
124 "event.h", 126 "event.h",
125 "event_tracer.cc", 127 "event_tracer.cc",
126 "event_tracer.h", 128 "event_tracer.h",
127 "exp_filter.cc", 129 "exp_filter.cc",
128 "exp_filter.h", 130 "exp_filter.h",
131 "flags.cc",
tommi 2016/03/11 06:43:46 flags also seems something marginal to base, so I'
tkchin_webrtc 2016/03/12 00:56:15 I found command_line_parser in webrtc/tools.
132 "flags.h",
129 "md5.cc", 133 "md5.cc",
130 "md5.h", 134 "md5.h",
131 "md5digest.cc", 135 "md5digest.cc",
132 "md5digest.h", 136 "md5digest.h",
133 "optional.h", 137 "optional.h",
134 "platform_file.cc", 138 "platform_file.cc",
135 "platform_file.h", 139 "platform_file.h",
136 "platform_thread.cc", 140 "platform_thread.cc",
137 "platform_thread.h", 141 "platform_thread.h",
138 "platform_thread_types.h", 142 "platform_thread_types.h",
(...skipping 11 matching lines...) Expand all
150 "systeminfo.cc", 154 "systeminfo.cc",
151 "systeminfo.h", 155 "systeminfo.h",
152 "template_util.h", 156 "template_util.h",
153 "thread_annotations.h", 157 "thread_annotations.h",
154 "thread_checker.h", 158 "thread_checker.h",
155 "thread_checker_impl.cc", 159 "thread_checker_impl.cc",
156 "thread_checker_impl.h", 160 "thread_checker_impl.h",
157 "timeutils.cc", 161 "timeutils.cc",
158 "timeutils.h", 162 "timeutils.h",
159 "trace_event.h", 163 "trace_event.h",
164 "urlencode.cc",
tommi 2016/03/11 06:43:46 urlencode seems to be fine except it has a depende
tkchin_webrtc 2016/03/12 00:56:15 It's only in the peer_channel example for webrtc,
165 "urlencode.h",
160 ] 166 ]
161 167
162 if (build_with_chromium) { 168 if (build_with_chromium) {
163 # Dependency on chromium's logging (in //base). 169 # Dependency on chromium's logging (in //base).
164 deps += [ "//base:base" ] 170 deps += [ "//base:base" ]
165 sources += [ 171 sources += [
166 "../../webrtc_overrides/webrtc/base/logging.cc", 172 "../../webrtc_overrides/webrtc/base/logging.cc",
167 "../../webrtc_overrides/webrtc/base/logging.h", 173 "../../webrtc_overrides/webrtc/base/logging.h",
168 ] 174 ]
169 include_dirs = [ "../../webrtc_overrides" ] 175 include_dirs = [ "../../webrtc_overrides" ]
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 "asyncsocket.cc", 219 "asyncsocket.cc",
214 "asyncsocket.h", 220 "asyncsocket.h",
215 "asynctcpsocket.cc", 221 "asynctcpsocket.cc",
216 "asynctcpsocket.h", 222 "asynctcpsocket.h",
217 "asyncudpsocket.cc", 223 "asyncudpsocket.cc",
218 "asyncudpsocket.h", 224 "asyncudpsocket.h",
219 "autodetectproxy.cc", 225 "autodetectproxy.cc",
220 "autodetectproxy.h", 226 "autodetectproxy.h",
221 "base64.cc", 227 "base64.cc",
222 "base64.h", 228 "base64.h",
223 "common.cc",
224 "common.h",
225 "copyonwritebuffer.cc", 229 "copyonwritebuffer.cc",
226 "copyonwritebuffer.h", 230 "copyonwritebuffer.h",
227 "crc32.cc", 231 "crc32.cc",
228 "crc32.h", 232 "crc32.h",
229 "cryptstring.cc", 233 "cryptstring.cc",
230 "cryptstring.h", 234 "cryptstring.h",
231 "diskcache.cc", 235 "diskcache.cc",
232 "diskcache.h", 236 "diskcache.h",
233 "filerotatingstream.cc", 237 "filerotatingstream.cc",
234 "filerotatingstream.h", 238 "filerotatingstream.h",
235 "fileutils.cc", 239 "fileutils.cc",
236 "fileutils.h", 240 "fileutils.h",
237 "firewallsocketserver.cc", 241 "firewallsocketserver.cc",
238 "firewallsocketserver.h", 242 "firewallsocketserver.h",
239 "flags.cc",
240 "flags.h",
241 "format_macros.h", 243 "format_macros.h",
242 "gunit_prod.h", 244 "gunit_prod.h",
243 "helpers.cc", 245 "helpers.cc",
244 "helpers.h", 246 "helpers.h",
245 "httpbase.cc", 247 "httpbase.cc",
246 "httpbase.h", 248 "httpbase.h",
247 "httpclient.cc", 249 "httpclient.cc",
248 "httpclient.h", 250 "httpclient.h",
249 "httpcommon-inl.h", 251 "httpcommon-inl.h",
250 "httpcommon.cc", 252 "httpcommon.cc",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 "task.cc", 328 "task.cc",
327 "task.h", 329 "task.h",
328 "taskparent.cc", 330 "taskparent.cc",
329 "taskparent.h", 331 "taskparent.h",
330 "taskrunner.cc", 332 "taskrunner.cc",
331 "taskrunner.h", 333 "taskrunner.h",
332 "thread.cc", 334 "thread.cc",
333 "thread.h", 335 "thread.h",
334 "timing.cc", 336 "timing.cc",
335 "timing.h", 337 "timing.h",
336 "urlencode.cc",
337 "urlencode.h",
338 "worker.cc", 338 "worker.cc",
339 "worker.h", 339 "worker.h",
340 ] 340 ]
341 341
342 if (is_posix) { 342 if (is_posix) {
343 sources += [ 343 sources += [
344 "ifaddrs-android.h", 344 "ifaddrs-android.h",
345 "ifaddrs_converter.cc", 345 "ifaddrs_converter.cc",
346 "unixfilesystem.cc", 346 "unixfilesystem.cc",
347 "unixfilesystem.h", 347 "unixfilesystem.h",
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 deps = [ 666 deps = [
667 ":rtc_base_approved", 667 ":rtc_base_approved",
668 ] 668 ]
669 sources = [ 669 sources = [
670 "numerics/safe_conversions.h", 670 "numerics/safe_conversions.h",
671 "numerics/safe_conversions_impl.h", 671 "numerics/safe_conversions_impl.h",
672 "numerics/safe_math.h", 672 "numerics/safe_math.h",
673 "numerics/safe_math_impl.h", 673 "numerics/safe_math_impl.h",
674 ] 674 ]
675 } 675 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698