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

Unified Diff: tools/create_sdk.py

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. Created 8 years, 1 month 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
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'))

Powered by Google App Engine
This is Rietveld 408576698