| 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 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 'generate_isolate_library_patch', | 1254 'generate_isolate_library_patch', |
| 1255 'generate_math_library_patch', | 1255 'generate_math_library_patch', |
| 1256 'generate_mirrors_library_patch', | 1256 'generate_mirrors_library_patch', |
| 1257 'generate_profiler_library_patch', | 1257 'generate_profiler_library_patch', |
| 1258 'generate_vmservice_library_patch', | 1258 'generate_vmservice_library_patch', |
| 1259 ], | 1259 ], |
| 1260 'actions': [ | 1260 'actions': [ |
| 1261 { | 1261 { |
| 1262 'action_name': 'patch_sdk', | 1262 'action_name': 'patch_sdk', |
| 1263 'inputs': [ | 1263 'inputs': [ |
| 1264 '<!@(["python", "../tools/list_files.py",' '"dart$",' '"sdk/lib"])', | 1264 '<!@(["python", "../tools/list_files.py", "relative",' |
| 1265 '"dart$", "sdk/lib"])', |
| 1265 '../../tools/patch_sdk.py', | 1266 '../../tools/patch_sdk.py', |
| 1266 '../../tools/patch_sdk.dart', | 1267 '../../tools/patch_sdk.dart', |
| 1267 # Unlike the other libraries in the SDK, dart:typed_data is not | 1268 # Unlike the other libraries in the SDK, dart:typed_data is not |
| 1268 # implemented as a patch applied to the base SDK implementation. | 1269 # implemented as a patch applied to the base SDK implementation. |
| 1269 # Instead the VM has a complete replacement library and the | 1270 # Instead the VM has a complete replacement library and the |
| 1270 # implementation in the SDK is ignored. | 1271 # implementation in the SDK is ignored. |
| 1271 '../lib/typed_data.dart', | 1272 '../lib/typed_data.dart', |
| 1272 # Unlike the other libraries in the SDK, dart:_builtin and | 1273 # Unlike the other libraries in the SDK, dart:_builtin and |
| 1273 # dart:nativewrappers are only available for the Dart VM. | 1274 # dart:nativewrappers are only available for the Dart VM. |
| 1274 '../bin/builtin.dart', | 1275 '../bin/builtin.dart', |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1684 '--output', | 1685 '--output', |
| 1685 '<(gen_source_dir)/patches/<(library_name)_patch.dart', | 1686 '<(gen_source_dir)/patches/<(library_name)_patch.dart', |
| 1686 '<@(_sources)', | 1687 '<@(_sources)', |
| 1687 ], | 1688 ], |
| 1688 'message': 'Generating <(library_uri) patch.', | 1689 'message': 'Generating <(library_uri) patch.', |
| 1689 }, | 1690 }, |
| 1690 ], | 1691 ], |
| 1691 }, | 1692 }, |
| 1692 ] | 1693 ] |
| 1693 } | 1694 } |
| OLD | NEW |