| 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 'libgen_in_cc_file': '../lib/libgen_in.cc', | 8 'libgen_in_cc_file': '../lib/libgen_in.cc', |
| 9 'builtin_in_cc_file': '../bin/builtin_in.cc', | 9 'builtin_in_cc_file': '../bin/builtin_in.cc', |
| 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', | 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', |
| (...skipping 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1331 ], | 1331 ], |
| 1332 'action': [ | 1332 'action': [ |
| 1333 'python', | 1333 'python', |
| 1334 '../tools/patch_sdk.py', | 1334 '../tools/patch_sdk.py', |
| 1335 '--dart-executable', | 1335 '--dart-executable', |
| 1336 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI
X)', | 1336 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI
X)', |
| 1337 'vm', | 1337 'vm', |
| 1338 '../sdk', | 1338 '../sdk', |
| 1339 '<(gen_source_dir)/patches', | 1339 '<(gen_source_dir)/patches', |
| 1340 '<(PRODUCT_DIR)/patched_sdk', | 1340 '<(PRODUCT_DIR)/patched_sdk', |
| 1341 '../.packages', |
| 1341 ], | 1342 ], |
| 1342 }, | 1343 }, |
| 1343 ], | 1344 ], |
| 1344 }, | 1345 }, |
| 1345 { | 1346 { |
| 1346 'variables': { | 1347 'variables': { |
| 1347 'library_name': 'async', | 1348 'library_name': 'async', |
| 1348 'library_uri': 'dart:async', | 1349 'library_uri': 'dart:async', |
| 1349 }, | 1350 }, |
| 1350 'target_name': 'generate_<(library_name)_library_patch', | 1351 'target_name': 'generate_<(library_name)_library_patch', |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1753 '--output', | 1754 '--output', |
| 1754 '<(gen_source_dir)/patches/<(library_name)_patch.dart', | 1755 '<(gen_source_dir)/patches/<(library_name)_patch.dart', |
| 1755 '<@(_sources)', | 1756 '<@(_sources)', |
| 1756 ], | 1757 ], |
| 1757 'message': 'Generating <(library_uri) patch.', | 1758 'message': 'Generating <(library_uri) patch.', |
| 1758 }, | 1759 }, |
| 1759 ], | 1760 ], |
| 1760 }, | 1761 }, |
| 1761 ] | 1762 ] |
| 1762 } | 1763 } |
| OLD | NEW |