Chromium Code Reviews| Index: tools/create_sdk.py |
| diff --git a/tools/create_sdk.py b/tools/create_sdk.py |
| index 841c99b9b3f1eff32fa4adc7e437ca9db34768c3..43283ff647b441d6e9112c863f5a04d75cc068c3 100755 |
| --- a/tools/create_sdk.py |
| +++ b/tools/create_sdk.py |
| @@ -23,6 +23,7 @@ |
| # ......dart_debugger_api.h |
| # ....lib/ |
| # ......_internal/ |
| +# ......collections/ |
|
dgrove
2012/10/26 04:51:23
DBC:collection
Anders Johnsen
2012/10/26 09:23:15
Ty, done.
|
| # ......core/ |
| # ......coreimpl/ |
| # ......crypto/ |
| @@ -249,9 +250,9 @@ def Main(argv): |
| # |
| os.makedirs(join(LIB, 'html')) |
| - for library in ['_internal', 'core', 'coreimpl', 'crypto', 'isolate', |
| - join('html', 'dart2js'), join('html', 'dartium'), 'json', |
| - 'math', 'mirrors', 'scalarlist', 'uri', 'utf']: |
| + for library in ['_internal', 'collection', 'core', 'coreimpl', 'crypto', |
| + 'isolate', join('html', 'dart2js'), join('html', 'dartium'), |
| + 'json', 'math', 'mirrors', 'scalarlist', 'uri', 'utf']: |
| copytree(join(HOME, 'lib', library), join(LIB, library), |
| ignore=ignore_patterns('*.svn', 'doc', '*.py', '*.gypi', '*.sh')) |