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

Unified Diff: utils/compiler/compiler.gyp

Issue 13945008: Move the dart2js snapshot into bin directory of sdk root. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/dart/test_suite.dart ('k') | utils/compiler/create_snapshot.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/compiler/compiler.gyp
===================================================================
--- utils/compiler/compiler.gyp (revision 21179)
+++ utils/compiler/compiler.gyp (working copy)
@@ -22,17 +22,13 @@
'<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/lib/_internal/compiler", "../../runtime/lib"])',
],
'outputs': [
- '<(PRODUCT_DIR)/dart2js.snapshot',
+ '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
],
'action': [
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
- # Note: we don't store the snapshot in the location where
- # the dart2js script is looking for it. The motivation
- # for that is to support an incremental development model
- # for dart2js compiler engineers. However, we install the
- # snapshot in the proper location when building the SDK.
- '--generate-script-snapshot=<(PRODUCT_DIR)/dart2js.snapshot',
- '../../sdk/lib/_internal/compiler/implementation/dart2js.dart',
+ 'create_snapshot.dart',
+ '--output_dir=<(SHARED_INTERMEDIATE_DIR)',
+ '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.dart',
],
},
],
« no previous file with comments | « tools/testing/dart/test_suite.dart ('k') | utils/compiler/create_snapshot.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698