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

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

Issue 2214763002: Initial version of new file wrapper (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Test random access better Created 4 years, 4 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
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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 "base64.cc", 279 "base64.cc",
280 "base64.h", 280 "base64.h",
281 "common.cc", 281 "common.cc",
282 "common.h", 282 "common.h",
283 "crc32.cc", 283 "crc32.cc",
284 "crc32.h", 284 "crc32.h",
285 "cryptstring.cc", 285 "cryptstring.cc",
286 "cryptstring.h", 286 "cryptstring.h",
287 "diskcache.cc", 287 "diskcache.cc",
288 "diskcache.h", 288 "diskcache.h",
289 "file.cc",
290 "file.h",
289 "filerotatingstream.cc", 291 "filerotatingstream.cc",
290 "filerotatingstream.h", 292 "filerotatingstream.h",
291 "fileutils.cc", 293 "fileutils.cc",
292 "fileutils.h", 294 "fileutils.h",
293 "firewallsocketserver.cc", 295 "firewallsocketserver.cc",
294 "firewallsocketserver.h", 296 "firewallsocketserver.h",
295 "flags.cc", 297 "flags.cc",
296 "flags.h", 298 "flags.h",
297 "format_macros.h", 299 "format_macros.h",
298 "gunit_prod.h", 300 "gunit_prod.h",
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 "dbus.h", 466 "dbus.h",
465 "libdbusglibsymboltable.cc", 467 "libdbusglibsymboltable.cc",
466 "libdbusglibsymboltable.h", 468 "libdbusglibsymboltable.h",
467 "linuxfdwalk.c", 469 "linuxfdwalk.c",
468 "linuxfdwalk.h", 470 "linuxfdwalk.h",
469 ] 471 ]
470 } 472 }
471 473
472 if (is_posix) { 474 if (is_posix) {
473 sources += [ 475 sources += [
476 "file_posix.cc",
474 "latebindingsymboltable.cc", 477 "latebindingsymboltable.cc",
475 "latebindingsymboltable.h", 478 "latebindingsymboltable.h",
476 "posix.cc", 479 "posix.cc",
477 "posix.h", 480 "posix.h",
478 ] 481 ]
479 } 482 }
480 483
481 if (is_mac) { 484 if (is_mac) {
482 sources += [ 485 sources += [
483 "macasyncsocket.cc", 486 "macasyncsocket.cc",
484 "macasyncsocket.h", 487 "macasyncsocket.h",
485 "maccocoasocketserver.h", 488 "maccocoasocketserver.h",
486 "maccocoasocketserver.mm", 489 "maccocoasocketserver.mm",
487 "macsocketserver.cc", 490 "macsocketserver.cc",
488 "macsocketserver.h", 491 "macsocketserver.h",
489 "macwindowpicker.cc", 492 "macwindowpicker.cc",
490 "macwindowpicker.h", 493 "macwindowpicker.h",
491 ] 494 ]
492 } 495 }
493 496
494 if (is_win) { 497 if (is_win) {
495 sources += [ 498 sources += [
496 "diskcache_win32.cc", 499 "diskcache_win32.cc",
497 "diskcache_win32.h", 500 "diskcache_win32.h",
501 "file_win.cc",
498 "win32regkey.cc", 502 "win32regkey.cc",
499 "win32regkey.h", 503 "win32regkey.h",
500 "win32socketinit.cc", 504 "win32socketinit.cc",
501 "win32socketinit.h", 505 "win32socketinit.h",
502 "win32socketserver.cc", 506 "win32socketserver.cc",
503 "win32socketserver.h", 507 "win32socketserver.h",
504 ] 508 ]
505 } 509 }
506 if (rtc_build_json) { 510 if (rtc_build_json) {
507 deps += [ "//third_party/jsoncpp" ] 511 deps += [ "//third_party/jsoncpp" ]
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 "java/src/org/webrtc/Logging.java", 707 "java/src/org/webrtc/Logging.java",
704 "java/src/org/webrtc/Size.java", 708 "java/src/org/webrtc/Size.java",
705 "java/src/org/webrtc/ThreadUtils.java", 709 "java/src/org/webrtc/ThreadUtils.java",
706 ] 710 ]
707 711
708 deps = [ 712 deps = [
709 "//base:base_java", 713 "//base:base_java",
710 ] 714 ]
711 } 715 }
712 } 716 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/base/base.gyp » ('j') | webrtc/base/file.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698