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

Side by Side Diff: runtime/bin/bin.gypi

Issue 63363010: Add support for working with large files, in dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/directory_android.cc » ('j') | runtime/bin/file_win.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 8
9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc',
10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 }, 117 },
118 { 118 {
119 'target_name': 'libdart_builtin', 119 'target_name': 'libdart_builtin',
120 'type': 'static_library', 120 'type': 'static_library',
121 'toolsets':['target','host'], 121 'toolsets':['target','host'],
122 'dependencies': [ 122 'dependencies': [
123 'generate_builtin_cc_file#host', 123 'generate_builtin_cc_file#host',
124 'generate_io_cc_file#host', 124 'generate_io_cc_file#host',
125 'generate_io_patch_cc_file#host', 125 'generate_io_patch_cc_file#host',
126 ], 126 ],
127 'cflags': [
128 '-D_FILE_OFFSET_BITS=64',
Søren Gjesse 2013/11/19 10:15:49 Does Windows use this as well? If not we should on
Anders Johnsen 2013/11/19 10:43:39 Wasn't needed anymore. Removed.
129 ],
127 'include_dirs': [ 130 'include_dirs': [
128 '..', 131 '..',
129 ], 132 ],
130 'sources': [ 133 'sources': [
131 'log_android.cc', 134 'log_android.cc',
132 'log_linux.cc', 135 'log_linux.cc',
133 'log_macos.cc', 136 'log_macos.cc',
134 'log_win.cc', 137 'log_win.cc',
135 ], 138 ],
136 'includes': [ 139 'includes': [
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 '-fPIC', 674 '-fPIC',
672 ], 675 ],
673 }], 676 }],
674 ], 677 ],
675 }, 678 },
676 ], 679 ],
677 }], 680 }],
678 ], 681 ],
679 } 682 }
680 683
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/directory_android.cc » ('j') | runtime/bin/file_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698