| 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 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 '<(gen_snapshot_stamp_file)', | 1000 '<(gen_snapshot_stamp_file)', |
| 1001 ], | 1001 ], |
| 1002 'action': [ | 1002 'action': [ |
| 1003 'python', | 1003 'python', |
| 1004 'tools/create_snapshot_bin.py', | 1004 'tools/create_snapshot_bin.py', |
| 1005 '--executable', | 1005 '--executable', |
| 1006 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX)
', | 1006 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX)
', |
| 1007 '--snapshot_kind', 'core', | 1007 '--snapshot_kind', 'core', |
| 1008 '--vm_output_bin', '<(vm_isolate_snapshot_bin_file)', | 1008 '--vm_output_bin', '<(vm_isolate_snapshot_bin_file)', |
| 1009 '--isolate_output_bin', '<(isolate_snapshot_bin_file)', | 1009 '--isolate_output_bin', '<(isolate_snapshot_bin_file)', |
| 1010 '--target_os', '<(OS)', | |
| 1011 '--timestamp_file', '<(gen_snapshot_stamp_file)', | 1010 '--timestamp_file', '<(gen_snapshot_stamp_file)', |
| 1012 ], | 1011 ], |
| 1013 'message': 'Generating ''<(vm_isolate_snapshot_bin_file)'' ''<(isolate
_snapshot_bin_file)'' files.' | 1012 'message': 'Generating ''<(vm_isolate_snapshot_bin_file)'' ''<(isolate
_snapshot_bin_file)'' files.' |
| 1014 }, | 1013 }, |
| 1015 ], | 1014 ], |
| 1016 }, | 1015 }, |
| 1017 { | 1016 { |
| 1018 # Generate snapshot file. | 1017 # Generate snapshot file. |
| 1019 'target_name': 'generate_snapshot_file', | 1018 'target_name': 'generate_snapshot_file', |
| 1020 'type': 'none', | 1019 'type': 'none', |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1434 }], | 1433 }], |
| 1435 ['OS=="linux"', { | 1434 ['OS=="linux"', { |
| 1436 'cflags': [ | 1435 'cflags': [ |
| 1437 '-fPIC', | 1436 '-fPIC', |
| 1438 ], | 1437 ], |
| 1439 }], | 1438 }], |
| 1440 ], | 1439 ], |
| 1441 }, | 1440 }, |
| 1442 ], | 1441 ], |
| 1443 } | 1442 } |
| OLD | NEW |