| 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 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1014 'target_name': 'generate_snapshot_file', | 1014 'target_name': 'generate_snapshot_file', |
| 1015 'type': 'none', | 1015 'type': 'none', |
| 1016 'toolsets':['host'], | 1016 'toolsets':['host'], |
| 1017 'dependencies': [ | 1017 'dependencies': [ |
| 1018 'generate_snapshot_bin#host', | 1018 'generate_snapshot_bin#host', |
| 1019 ], | 1019 ], |
| 1020 'actions': [ | 1020 'actions': [ |
| 1021 { | 1021 { |
| 1022 'action_name': 'generate_snapshot_file', | 1022 'action_name': 'generate_snapshot_file', |
| 1023 'inputs': [ | 1023 'inputs': [ |
| 1024 '../tools/create_snapshot_file.py', | 1024 '../tools/create_snapshot_cc.py', |
| 1025 '<(gen_snapshot_stamp_file)', | 1025 '<(gen_snapshot_stamp_file)', |
| 1026 '<(snapshot_in_cc_file)', | 1026 '<(snapshot_in_cc_file)', |
| 1027 ], | 1027 ], |
| 1028 'outputs': [ | 1028 'outputs': [ |
| 1029 '<(snapshot_cc_file)', | 1029 '<(snapshot_cc_file)', |
| 1030 ], | 1030 ], |
| 1031 'action': [ | 1031 'action': [ |
| 1032 'python', | 1032 'python', |
| 1033 'tools/create_snapshot_file.py', | 1033 'tools/create_snapshot_cc.py', |
| 1034 '--vm_input_bin', '<(vm_isolate_snapshot_bin_file)', | 1034 '--vm_input_bin', '<(vm_isolate_snapshot_bin_file)', |
| 1035 '--input_bin', '<(isolate_snapshot_bin_file)', | 1035 '--input_bin', '<(isolate_snapshot_bin_file)', |
| 1036 '--input_cc', '<(snapshot_in_cc_file)', | 1036 '--input_cc', '<(snapshot_in_cc_file)', |
| 1037 '--output', '<(snapshot_cc_file)', | 1037 '--output', '<(snapshot_cc_file)', |
| 1038 ], | 1038 ], |
| 1039 'message': 'Generating ''<(snapshot_cc_file)'' file.' | 1039 'message': 'Generating ''<(snapshot_cc_file)'' file.' |
| 1040 }, | 1040 }, |
| 1041 ] | 1041 ] |
| 1042 }, | 1042 }, |
| 1043 { | 1043 { |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1403 }], | 1403 }], |
| 1404 ['OS=="linux"', { | 1404 ['OS=="linux"', { |
| 1405 'cflags': [ | 1405 'cflags': [ |
| 1406 '-fPIC', | 1406 '-fPIC', |
| 1407 ], | 1407 ], |
| 1408 }], | 1408 }], |
| 1409 ], | 1409 ], |
| 1410 }, | 1410 }, |
| 1411 ], | 1411 ], |
| 1412 } | 1412 } |
| OLD | NEW |