Chromium Code Reviews| 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)) |