| Index: tools/create_sdk.py
|
| diff --git a/tools/create_sdk.py b/tools/create_sdk.py
|
| index 6a163a991278a82e36ccfa525792cbc824eaecc6..da6fc1317220d1d34294f5786728d4322a60a1d3 100644
|
| --- a/tools/create_sdk.py
|
| +++ b/tools/create_sdk.py
|
| @@ -28,6 +28,9 @@
|
| # ......coreimpl/
|
| # ........coreimpl_{frog, runtime}.dart
|
| # ........{frog, runtime}/
|
| +# ......isolate/
|
| +# ........isolate_{frog, runtime}.dart
|
| +# ........{frog, runtime}/
|
| # ......dom/
|
| # ........dom.dart
|
| # ......frog/
|
| @@ -270,6 +273,10 @@ def Main(argv):
|
| for filename in os.listdir(src_dir):
|
| if filename.endswith('.dart'):
|
| copyfile(join(src_dir, filename), join(dest_dir, filename))
|
| +
|
| + # Create and populate lib/isolate
|
| + copytree(join(HOME, 'lib', 'isolate'), join(LIB, 'isolate'),
|
| + ignore=ignore_patterns('.svn'))
|
|
|
| #
|
| # Create and populate lib/core.
|
|
|