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

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: Move init call for scalarlist lib 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
« no previous file with comments | « 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 3b14658f8192861608a406657e2033eec07d93a4..0b89851afdf98cc465ac49ae90aa345c49858441 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -34,6 +34,7 @@
# ......mirrors/
# ......uri/
# ......utf/
+# ......scalarlist/
# ....pkg/
# ......args/
# ......compiler/
@@ -226,7 +227,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'))
« no previous file with comments | « 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