| Index: tools/create_sdk.py
|
| ===================================================================
|
| --- tools/create_sdk.py (revision 12788)
|
| +++ tools/create_sdk.py (working copy)
|
| @@ -226,9 +226,10 @@
|
| # Create and populate lib/{core, crypto, isolate, json, uri, utf, ...}.
|
| #
|
|
|
| - for library in ['_internal', 'html', 'core', 'coreimpl',
|
| - 'crypto', 'isolate', 'json', 'math', 'mirrors',
|
| - 'scalarlist', 'uri', 'utf']:
|
| + 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']:
|
| copytree(join(HOME, 'lib', library), join(LIB, library),
|
| ignore=ignore_patterns('*.svn', 'doc', '*.py', '*.gypi', '*.sh'))
|
|
|
|
|