OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
671 '-fPIC', | 674 '-fPIC', |
672 ], | 675 ], |
673 }], | 676 }], |
674 ], | 677 ], |
675 }, | 678 }, |
676 ], | 679 ], |
677 }], | 680 }], |
678 ], | 681 ], |
679 } | 682 } |
680 | 683 |
OLD | NEW |