| Index: tools/create_sdk.py
|
| diff --git a/tools/create_sdk.py b/tools/create_sdk.py
|
| index 43d91b46d901be4a4af097d55f7b58d1ec00bce6..a3235e8b2524f425a2e7cfff91c7803756925276 100755
|
| --- a/tools/create_sdk.py
|
| +++ b/tools/create_sdk.py
|
| @@ -25,7 +25,6 @@
|
| # ......_internal/
|
| # ......collection/
|
| # ......core/
|
| -# ......coreimpl/
|
| # ......crypto/
|
| # ......html/
|
| # ......io/
|
| @@ -201,10 +200,10 @@ def Main(argv):
|
| #
|
|
|
| os.makedirs(join(LIB, 'html'))
|
| - for library in ['_internal', 'collection', 'core', 'coreimpl', 'crypto', 'io',
|
| - 'isolate', join('html', 'dart2js'), join('html', 'dartium'),
|
| - 'json', 'math', 'mirrors', 'scalarlist',
|
| - join('svg', 'dart2js'), join('svg', 'dartium'), 'uri', 'utf']:
|
| + for library in ['_internal', 'collection', 'core', 'crypto', 'io', 'isolate',
|
| + join('html', 'dart2js'), join('html', 'dartium'), 'json',
|
| + 'math', 'mirrors', 'scalarlist', join('svg', 'dart2js'),
|
| + join('svg', 'dartium'), 'uri', 'utf']:
|
| copytree(join(HOME, 'sdk', 'lib', library), join(LIB, library),
|
| ignore=ignore_patterns('*.svn', 'doc', '*.py', '*.gypi', '*.sh'))
|
|
|
|
|