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

Unified Diff: tools/create_sdk.py

Issue 11274043: Move Arrays, Collections and Maps into a new library, dart:collections. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Review update. Created 8 years, 2 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
« runtime/vm/object.cc ('K') | « tests/corelib/maps_test.dart ('k') | no next file » | 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 841c99b9b3f1eff32fa4adc7e437ca9db34768c3..7dc25529ba8d071ed95d0acaedfb075a913b52c9 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -23,6 +23,7 @@
# ......dart_debugger_api.h
# ....lib/
# ......_internal/
+# ......collections/
# ......core/
# ......coreimpl/
# ......crypto/
@@ -249,9 +250,9 @@ def Main(argv):
#
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']:
+ for library in ['_internal', 'collections', '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'))
« runtime/vm/object.cc ('K') | « tests/corelib/maps_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698