| 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 'builtin_in_cc_file': '../bin/builtin_in.cc', | 7 'builtin_in_cc_file': '../bin/builtin_in.cc', |
| 8 'async_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_gen.cc', | 8 'async_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_gen.cc', |
| 9 'async_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_patch_gen.cc', | 9 'async_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_patch_gen.cc', |
| 10 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', | 10 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'outputs': [ | 188 'outputs': [ |
| 189 '<(async_cc_file)', | 189 '<(async_cc_file)', |
| 190 ], | 190 ], |
| 191 'action': [ | 191 'action': [ |
| 192 'python', | 192 'python', |
| 193 'tools/create_string_literal.py', | 193 'tools/create_string_literal.py', |
| 194 '--output', '<(async_cc_file)', | 194 '--output', '<(async_cc_file)', |
| 195 '--input_cc', '<(builtin_in_cc_file)', | 195 '--input_cc', '<(builtin_in_cc_file)', |
| 196 '--include', 'vm/bootstrap.h', | 196 '--include', 'vm/bootstrap.h', |
| 197 '--var_name', 'dart::Bootstrap::async_source_', | 197 '--var_name', 'dart::Bootstrap::async_source_', |
| 198 '<@(_sources)', | 198 '<@(async_dart)', |
| 199 ], | 199 ], |
| 200 'message': 'Generating ''<(async_cc_file)'' file.' | 200 'message': 'Generating ''<(async_cc_file)'' file.' |
| 201 }, | 201 }, |
| 202 ] | 202 ] |
| 203 }, | 203 }, |
| 204 { | 204 { |
| 205 'target_name': 'generate_corelib_cc_file', | 205 'target_name': 'generate_corelib_cc_file', |
| 206 'type': 'none', | 206 'type': 'none', |
| 207 'variables': { | 207 'variables': { |
| 208 'core_dart': '<(SHARED_INTERMEDIATE_DIR)/core_gen.dart', | 208 'core_dart': '<(SHARED_INTERMEDIATE_DIR)/core_gen.dart', |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 '--include', 'INTENTIONALLY_LEFT_BLANK', | 792 '--include', 'INTENTIONALLY_LEFT_BLANK', |
| 793 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 793 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
| 794 '<(snapshot_test_dart_file)', | 794 '<(snapshot_test_dart_file)', |
| 795 ], | 795 ], |
| 796 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 796 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 797 }, | 797 }, |
| 798 ] | 798 ] |
| 799 }, | 799 }, |
| 800 ] | 800 ] |
| 801 } | 801 } |
| OLD | NEW |