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

Unified Diff: tools/create_sdk.py

Issue 63363007: SDK build bits for dartfmt. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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/dartfmt/dartfmt.gyp » ('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 32508)
+++ tools/create_sdk.py (working copy)
@@ -15,12 +15,15 @@
# ....bin/
# ......dart or dart.exe (executable)
# ......dart.lib (import library for VM native extensions on Windows)
+# ......dartfmt
# ......dart2js
# ......dartanalyzer
# ......pub
# ......snapshots/
+# ........dart2js.dart.snapshot
+# ........dartfmt.dart.snapshot
+# ........pub.dart.snapshot
# ........utils_wrapper.dart.snapshot
-# ........pub.dart.snapshot
# ....include/
# ......dart_api.h
# ......dart_debugger_api.h
@@ -105,13 +108,13 @@
def CopyDartScripts(home, sdk_root):
- for executable in ['dart2js', 'dartanalyzer', 'docgen', 'pub']:
+ for executable in ['dart2js', 'dartanalyzer', 'dartfmt', 'docgen', 'pub']:
CopyShellScript(os.path.join(home, 'sdk', 'bin', executable),
os.path.join(sdk_root, 'bin'))
def CopySnapshots(snapshots, sdk_root):
- for snapshot in ['dart2js', 'utils_wrapper', 'pub']:
+ for snapshot in ['dart2js', '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/dartfmt/dartfmt.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698