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

Unified Diff: tools/create_sdk.py

Issue 10919267: Introduce a VM-only dart:scalarlist library for byte arrays. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use abstract classes instead of interfaces. Created 8 years, 3 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/standalone/io/web_socket_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 b9cd4e0ee1c545b08a837002be3385bd8f9a45d5..07017a6d15689fdac2099bcaa7307bed825ed545 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -34,6 +34,7 @@
# ......mirrors/
# ......uri/
# ......utf/
+# ......scalarlist/
# ....pkg/
# ......args/
# ......compiler/
@@ -224,7 +225,8 @@ def Main(argv):
#
for library in ['_internal', 'html', 'core', 'coreimpl',
- 'crypto', 'isolate', 'json', 'math', 'mirrors', 'uri', 'utf']:
+ 'crypto', 'isolate', '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/standalone/io/web_socket_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698