Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: runtime/vm/vm.gypi

Issue 2469683002: Emit patched_sdk in the root output directory. (Closed)
Patch Set: Martin's comment Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/BUILD.gn ('k') | tools/patch_sdk.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 '<(gen_source_dir)/patches/internal_patch.dart', 1283 '<(gen_source_dir)/patches/internal_patch.dart',
1284 '<(gen_source_dir)/patches/io_patch.dart', 1284 '<(gen_source_dir)/patches/io_patch.dart',
1285 '<(gen_source_dir)/patches/isolate_patch.dart', 1285 '<(gen_source_dir)/patches/isolate_patch.dart',
1286 '<(gen_source_dir)/patches/math_patch.dart', 1286 '<(gen_source_dir)/patches/math_patch.dart',
1287 '<(gen_source_dir)/patches/mirrors_patch.dart', 1287 '<(gen_source_dir)/patches/mirrors_patch.dart',
1288 '<(gen_source_dir)/patches/profiler_patch.dart', 1288 '<(gen_source_dir)/patches/profiler_patch.dart',
1289 '<(gen_source_dir)/patches/vmservice_patch.dart', 1289 '<(gen_source_dir)/patches/vmservice_patch.dart',
1290 ], 1290 ],
1291 'outputs': [ 1291 'outputs': [
1292 # Instead of listing all outputs we list a single well-known one. 1292 # Instead of listing all outputs we list a single well-known one.
1293 '<(gen_source_dir)/patched_sdk/lib/core/core.dart', 1293 '<(PRODUCT_DIR)/patched_sdk/lib/core/core.dart',
1294 ], 1294 ],
1295 'action': [ 1295 'action': [
1296 'python', 1296 'python',
1297 '../tools/patch_sdk.py', 1297 '../tools/patch_sdk.py',
1298 '--dart-executable', 1298 '--dart-executable',
1299 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)', 1299 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart_bootstrap<(EXECUTABLE_SUFFI X)',
1300 'vm', 1300 'vm',
1301 '../sdk', 1301 '../sdk',
1302 '<(gen_source_dir)/patches', 1302 '<(gen_source_dir)/patches',
1303 '<(gen_source_dir)/patched_sdk', 1303 '<(PRODUCT_DIR)/patched_sdk',
1304 ], 1304 ],
1305 }, 1305 },
1306 ], 1306 ],
1307 }, 1307 },
1308 { 1308 {
1309 'variables': { 1309 'variables': {
1310 'library_name': 'async', 1310 'library_name': 'async',
1311 'library_uri': 'dart:async', 1311 'library_uri': 'dart:async',
1312 }, 1312 },
1313 'target_name': 'generate_<(library_name)_library_patch', 1313 'target_name': 'generate_<(library_name)_library_patch',
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
1684 '--output', 1684 '--output',
1685 '<(gen_source_dir)/patches/<(library_name)_patch.dart', 1685 '<(gen_source_dir)/patches/<(library_name)_patch.dart',
1686 '<@(_sources)', 1686 '<@(_sources)',
1687 ], 1687 ],
1688 'message': 'Generating <(library_uri) patch.', 1688 'message': 'Generating <(library_uri) patch.',
1689 }, 1689 },
1690 ], 1690 ],
1691 }, 1691 },
1692 ] 1692 ]
1693 } 1693 }
OLDNEW
« no previous file with comments | « runtime/vm/BUILD.gn ('k') | tools/patch_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698