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

Unified Diff: tools/create_sdk.py

Issue 1356943002: remove docgen from the sdk, and generating docs with docgen (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/bots/dart_sdk.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index b4e2135f765608193d6bc018541a86caec8260d5..a5a84b2652d7e135fbb0d923b0583f3f688ea43c 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -120,15 +120,15 @@ def CopyShellScript(src_file, dest_dir):
def CopyDartScripts(home, sdk_root):
- for executable in ['dart2js_sdk', 'dartanalyzer_sdk', 'dartfmt_sdk', 'docgen',
- 'dartdocgen', 'pub_sdk', 'dartdoc']:
+ for executable in ['dart2js_sdk', 'dartanalyzer_sdk', 'dartfmt_sdk',
+ 'pub_sdk', 'dartdoc']:
CopyShellScript(os.path.join(home, 'sdk', 'bin', executable),
os.path.join(sdk_root, 'bin'))
def CopySnapshots(snapshots, sdk_root):
for snapshot in ['analysis_server', 'dart2js', 'dartanalyzer', 'dartfmt',
- 'utils_wrapper', 'pub', 'dartdoc']:
Bill Hesse 2015/09/18 19:33:40 This is used in test_suite.dart, and perhaps other
+ 'pub', 'dartdoc']:
snapshot += '.dart.snapshot'
copyfile(join(snapshots, snapshot),
join(sdk_root, 'bin', 'snapshots', snapshot))
« no previous file with comments | « tools/bots/dart_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698