| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 'DART_SHARED_LIB', | 366 'DART_SHARED_LIB', |
| 367 'DART_NO_SNAPSHOT', | 367 'DART_NO_SNAPSHOT', |
| 368 ], | 368 ], |
| 369 }, | 369 }, |
| 370 { | 370 { |
| 371 # Completely statically linked binary for generating snapshots. | 371 # Completely statically linked binary for generating snapshots. |
| 372 'target_name': 'gen_snapshot', | 372 'target_name': 'gen_snapshot', |
| 373 'type': 'executable', | 373 'type': 'executable', |
| 374 'toolsets':['host'], | 374 'toolsets':['host'], |
| 375 'dependencies': [ | 375 'dependencies': [ |
| 376 'generate_resources_cc_file#host', |
| 376 'libdart_nosnapshot', | 377 'libdart_nosnapshot', |
| 377 'libdart_builtin', | 378 'libdart_builtin', |
| 378 'libdart_io', | 379 'libdart_io', |
| 379 ], | 380 ], |
| 380 'include_dirs': [ | 381 'include_dirs': [ |
| 381 '..', | 382 '..', |
| 382 ], | 383 ], |
| 383 'sources': [ | 384 'sources': [ |
| 384 'address_sanitizer.cc', | 385 'address_sanitizer.cc', |
| 385 'gen_snapshot.cc', | 386 'gen_snapshot.cc', |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 }], | 814 }], |
| 814 ['OS=="linux"', { | 815 ['OS=="linux"', { |
| 815 'cflags': [ | 816 'cflags': [ |
| 816 '-fPIC', | 817 '-fPIC', |
| 817 ], | 818 ], |
| 818 }], | 819 }], |
| 819 ], | 820 ], |
| 820 }, | 821 }, |
| 821 ], | 822 ], |
| 822 } | 823 } |
| OLD | NEW |