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

Unified Diff: tools/create_sdk.py

Issue 368993002: Build bits to add an analysis_server snapshot to the SDK. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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 | « dart.gyp ('k') | utils/analysis_server/.gitignore » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
===================================================================
--- tools/create_sdk.py (revision 39372)
+++ tools/create_sdk.py (working copy)
@@ -20,6 +20,7 @@
# ......dartanalyzer
# ......pub
# ......snapshots/
+# ........analysis_server.dart.snapshot
# ........dart2js.dart.snapshot
# ........dartanalyzer.dart.snapshot
# ........dartfmt.dart.snapshot
@@ -112,8 +113,8 @@
def CopySnapshots(snapshots, sdk_root):
- for snapshot in ['dart2js', 'dartanalyzer', 'dartfmt', 'utils_wrapper',
- 'pub']:
+ for snapshot in ['analysis_server', 'dart2js', 'dartanalyzer', 'dartfmt',
+ 'utils_wrapper', 'pub']:
snapshot += '.dart.snapshot'
copyfile(join(snapshots, snapshot),
join(sdk_root, 'bin', 'snapshots', snapshot))
« no previous file with comments | « dart.gyp ('k') | utils/analysis_server/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698