Chromium Code Reviews| Index: tools/create_sdk.py |
| =================================================================== |
| --- tools/create_sdk.py (revision 11081) |
| +++ tools/create_sdk.py (working copy) |
| @@ -50,6 +50,8 @@ |
| # ........json_frog.dart |
| #.........json.dart |
| # ........{frog}/ |
| +# ......mirrors/ |
| +# ........mirrors.dart |
| # ......uri/ |
| # ........uri.dart |
| # ......utf/ |
| @@ -334,7 +336,7 @@ |
| # Create and populate lib/{crypto, json, uri, utf, ...}. |
| # |
| - for library in ['_internal', 'crypto', 'json', 'math', 'uri', 'utf', 'web']: |
| + for library in ['_internal', 'crypto', 'json', 'math', 'mirrors', 'uri', 'utf', 'web']: |
|
dgrove
2012/08/21 18:58:07
80 chars.
devoncarew
2012/08/21 19:52:34
Done.
|
| src_dir = join(HOME, 'lib', library) |
| dest_dir = join(LIB, library) |
| os.makedirs(dest_dir) |