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

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: Change arrow-syntax factory into brace-syntax, due to multiline content. 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 c42f3e8e9577f977d66f3b473b40b1df713ce2e7..ba18dd04e8ae7e809f4cb4ded603f555c2bea4a0 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -25,7 +25,6 @@
# ......_internal/
# ......collection/
# ......core/
-# ......coreimpl/
# ......crypto/
# ......html/
# ......io/
@@ -205,9 +204,9 @@ 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', 'uri', 'utf']:
+ for library in ['_internal', 'collection', 'core', 'crypto', 'io', 'isolate',
+ join('html', 'dart2js'), join('html', 'dartium'), 'json',
+ 'math', 'mirrors', 'scalarlist', '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