| 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 # We place most generated source files in LIB_DIR (rather than, say | 7 # We place most generated source files in LIB_DIR (rather than, say |
| 8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids | 8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids |
| 9 # two problems. First, if a generated source file has architecture specific | 9 # two problems. First, if a generated source file has architecture specific |
| 10 # code, we'll get two different files in two different directories. Second, | 10 # code, we'll get two different files in two different directories. Second, |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 ], | 244 ], |
| 245 }, | 245 }, |
| 246 { | 246 { |
| 247 # Completely statically linked binary for generating snapshots. | 247 # Completely statically linked binary for generating snapshots. |
| 248 'target_name': 'gen_snapshot', | 248 'target_name': 'gen_snapshot', |
| 249 'type': 'executable', | 249 'type': 'executable', |
| 250 'toolsets':['host'], | 250 'toolsets':['host'], |
| 251 'dependencies': [ | 251 'dependencies': [ |
| 252 'libdart_withcore', | 252 'libdart_withcore', |
| 253 'libdart_builtin', | 253 'libdart_builtin', |
| 254 'libdart_io', |
| 254 ], | 255 ], |
| 255 'include_dirs': [ | 256 'include_dirs': [ |
| 256 '..', | 257 '..', |
| 257 ], | 258 ], |
| 258 'sources': [ | 259 'sources': [ |
| 259 'gen_snapshot.cc', | 260 'gen_snapshot.cc', |
| 260 # Very limited native resolver provided. | 261 # Very limited native resolver provided. |
| 261 'builtin_gen_snapshot.cc', | 262 'builtin_gen_snapshot.cc', |
| 262 'builtin.cc', | 263 'builtin.cc', |
| 263 'builtin.h', | 264 'builtin.h', |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 '-fPIC', | 682 '-fPIC', |
| 682 ], | 683 ], |
| 683 }], | 684 }], |
| 684 ], | 685 ], |
| 685 }, | 686 }, |
| 686 ], | 687 ], |
| 687 }], | 688 }], |
| 688 ], | 689 ], |
| 689 } | 690 } |
| 690 | 691 |
| OLD | NEW |