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

Unified Diff: tools/create_sdk.py

Issue 10905125: Move dart:web to pkg:htmlescape. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/bin/builtin_nolib.cc ('K') | « runtime/vm/unit_test.cc ('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 7bdd755d92c90459a62a9f61ca492cdcdd6fa7fd..2ea8fe8443a0a55e6aacc0779e0dcff12e118a00 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -55,11 +55,10 @@
# ......uri/
# ........uri.dart
# ......utf/
-# ......web/
-# ........web.dart
# ....pkg/
# ......args/
# ......dartdoc/
+#.......htmlescape/
# ......intl/
# ......logging/
# ......(more will come here)
@@ -300,8 +299,9 @@ def Main(argv):
# Create and populate lib/{core, crypto, isolate, json, uri, utf, ...}.
#
+ # TODO: Take this data from lib/_internal/libraries.dart!
for library in ['_internal', 'core', 'coreimpl', 'crypto', 'isolate', 'json',
- 'math', 'mirrors', 'uri', 'utf', 'web']:
+ 'math', 'mirrors', 'uri', 'utf']:
src_dir = join(HOME, 'lib', library)
dest_dir = join(LIB, library)
os.makedirs(dest_dir)
@@ -318,7 +318,7 @@ def Main(argv):
# Create and populate pkg/{args, intl, logging, unittest}
#
- for library in ['args', 'intl', 'logging', 'unittest']:
+ for library in ['args', 'htmlescape', 'intl', 'logging', 'unittest']:
src_dir = join(HOME, 'pkg', library)
dest_dir = join(PKG, library)
os.makedirs(dest_dir)
« runtime/bin/builtin_nolib.cc ('K') | « runtime/vm/unit_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698