Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: tools/create_sdk.py

Issue 9422019: isolates refactor: this change introduces 'dart:isolate' as a library. This is a (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/standalone.status ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « tests/standalone/standalone.status ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698