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

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

Issue 2533213005: Add File::Open / Create functions to take an rtc::Pathname (Closed)
Patch Set: Resolve review comments Created 4 years 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/file.h » ('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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "copyonwritebuffer.h", 119 "copyonwritebuffer.h",
120 "criticalsection.cc", 120 "criticalsection.cc",
121 "criticalsection.h", 121 "criticalsection.h",
122 "deprecation.h", 122 "deprecation.h",
123 "event.cc", 123 "event.cc",
124 "event.h", 124 "event.h",
125 "event_tracer.cc", 125 "event_tracer.cc",
126 "event_tracer.h", 126 "event_tracer.h",
127 "file.cc", 127 "file.cc",
128 "file.h", 128 "file.h",
129 "flags.cc",
130 "flags.h",
129 "format_macros.h", 131 "format_macros.h",
130 "function_view.h", 132 "function_view.h",
131 "ignore_wundef.h", 133 "ignore_wundef.h",
132 "location.cc", 134 "location.cc",
133 "location.h", 135 "location.h",
134 "md5.cc", 136 "md5.cc",
135 "md5.h", 137 "md5.h",
136 "md5digest.cc", 138 "md5digest.cc",
137 "md5digest.h", 139 "md5digest.h",
138 "mod_ops.h", 140 "mod_ops.h",
139 "onetimeevent.h", 141 "onetimeevent.h",
140 "optional.cc", 142 "optional.cc",
141 "optional.h", 143 "optional.h",
144 "pathutils.cc",
145 "pathutils.h",
142 "platform_file.cc", 146 "platform_file.cc",
143 "platform_file.h", 147 "platform_file.h",
144 "platform_thread.cc", 148 "platform_thread.cc",
145 "platform_thread.h", 149 "platform_thread.h",
146 "platform_thread_types.h", 150 "platform_thread_types.h",
147 "race_checker.cc", 151 "race_checker.cc",
148 "race_checker.h", 152 "race_checker.h",
149 "random.cc", 153 "random.cc",
150 "random.h", 154 "random.h",
151 "rate_limiter.cc", 155 "rate_limiter.cc",
(...skipping 20 matching lines...) Expand all
172 "thread_annotations.h", 176 "thread_annotations.h",
173 "thread_checker.h", 177 "thread_checker.h",
174 "thread_checker_impl.cc", 178 "thread_checker_impl.cc",
175 "thread_checker_impl.h", 179 "thread_checker_impl.h",
176 "timestampaligner.cc", 180 "timestampaligner.cc",
177 "timestampaligner.h", 181 "timestampaligner.h",
178 "timeutils.cc", 182 "timeutils.cc",
179 "timeutils.h", 183 "timeutils.h",
180 "trace_event.h", 184 "trace_event.h",
181 "type_traits.h", 185 "type_traits.h",
186 "urlencode.cc",
187 "urlencode.h",
182 ] 188 ]
183 189
184 if (is_android) { 190 if (is_android) {
185 libs += [ "log" ] 191 libs += [ "log" ]
186 } 192 }
187 193
188 if (is_posix) { 194 if (is_posix) {
189 sources += [ "file_posix.cc" ] 195 sources += [ "file_posix.cc" ]
190 } 196 }
191 197
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 "crc32.cc", 408 "crc32.cc",
403 "crc32.h", 409 "crc32.h",
404 "cryptstring.cc", 410 "cryptstring.cc",
405 "cryptstring.h", 411 "cryptstring.h",
406 "diskcache.cc", 412 "diskcache.cc",
407 "diskcache.h", 413 "diskcache.h",
408 "filerotatingstream.cc", 414 "filerotatingstream.cc",
409 "filerotatingstream.h", 415 "filerotatingstream.h",
410 "fileutils.cc", 416 "fileutils.cc",
411 "fileutils.h", 417 "fileutils.h",
412 "flags.cc",
413 "flags.h",
414 "gunit_prod.h", 418 "gunit_prod.h",
415 "helpers.cc", 419 "helpers.cc",
416 "helpers.h", 420 "helpers.h",
417 "httpbase.cc", 421 "httpbase.cc",
418 "httpbase.h", 422 "httpbase.h",
419 "httpclient.cc", 423 "httpclient.cc",
420 "httpclient.h", 424 "httpclient.h",
421 "httpcommon-inl.h", 425 "httpcommon-inl.h",
422 "httpcommon.cc", 426 "httpcommon.cc",
423 "httpcommon.h", 427 "httpcommon.h",
(...skipping 16 matching lines...) Expand all
440 "nullsocketserver.h", 444 "nullsocketserver.h",
441 "openssl.h", 445 "openssl.h",
442 "openssladapter.cc", 446 "openssladapter.cc",
443 "openssladapter.h", 447 "openssladapter.h",
444 "openssldigest.cc", 448 "openssldigest.cc",
445 "openssldigest.h", 449 "openssldigest.h",
446 "opensslidentity.cc", 450 "opensslidentity.cc",
447 "opensslidentity.h", 451 "opensslidentity.h",
448 "opensslstreamadapter.cc", 452 "opensslstreamadapter.cc",
449 "opensslstreamadapter.h", 453 "opensslstreamadapter.h",
450 "pathutils.cc",
451 "pathutils.h",
452 "physicalsocketserver.cc", 454 "physicalsocketserver.cc",
453 "physicalsocketserver.h", 455 "physicalsocketserver.h",
454 "proxydetect.cc", 456 "proxydetect.cc",
455 "proxydetect.h", 457 "proxydetect.h",
456 "proxyinfo.cc", 458 "proxyinfo.cc",
457 "proxyinfo.h", 459 "proxyinfo.h",
458 "ratelimiter.cc", 460 "ratelimiter.cc",
459 "ratelimiter.h", 461 "ratelimiter.h",
460 "rtccertificate.cc", 462 "rtccertificate.cc",
461 "rtccertificate.h", 463 "rtccertificate.h",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 "stream.cc", 500 "stream.cc",
499 "stream.h", 501 "stream.h",
500 "task.cc", 502 "task.cc",
501 "task.h", 503 "task.h",
502 "taskparent.cc", 504 "taskparent.cc",
503 "taskparent.h", 505 "taskparent.h",
504 "taskrunner.cc", 506 "taskrunner.cc",
505 "taskrunner.h", 507 "taskrunner.h",
506 "thread.cc", 508 "thread.cc",
507 "thread.h", 509 "thread.h",
508 "urlencode.cc",
509 "urlencode.h",
510 ] 510 ]
511 511
512 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default 512 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default
513 # compiler settings. 513 # compiler settings.
514 suppressed_configs += [ "//build/config/compiler:chromium_code" ] 514 suppressed_configs += [ "//build/config/compiler:chromium_code" ]
515 configs += [ "//build/config/compiler:no_chromium_code" ] 515 configs += [ "//build/config/compiler:no_chromium_code" ]
516 if (!is_win) { 516 if (!is_win) {
517 cflags += [ "-Wno-uninitialized" ] 517 cflags += [ "-Wno-uninitialized" ]
518 } 518 }
519 519
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 "java/src/org/webrtc/Logging.java", 765 "java/src/org/webrtc/Logging.java",
766 "java/src/org/webrtc/Size.java", 766 "java/src/org/webrtc/Size.java",
767 "java/src/org/webrtc/ThreadUtils.java", 767 "java/src/org/webrtc/ThreadUtils.java",
768 ] 768 ]
769 769
770 deps = [ 770 deps = [
771 "//base:base_java", 771 "//base:base_java",
772 ] 772 ]
773 } 773 }
774 } 774 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698