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

Unified Diff: tools/create_sdk.py

Issue 9600035: Enable new dart:html wrapperless frog bindings and wrapper dartium bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle all code review comments Created 8 years, 10 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/utils/utils.status ('k') | tools/testing/dart/test_suite.dart » ('j') | 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 778cf96d122249c6afd2be6f435d32e6169ae5a9..906d697de9f610381e16489f832b775db5c2b633 100644
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -35,10 +35,9 @@
# ......dom/
# ........dom.dart
# ......frog/
-# ......html/
-# ........html.dart
-# ......htmlimpl/
-# ........htmlimpl.dart
+# ......html/
+# ........html_frog.dart
+# ........html_dartium.dart
# ......json/
# ........json_frog.dart
#.........json.dart
@@ -236,18 +235,16 @@ def Main(argv):
file.close()
#
- # Create and populate lib/html and lib/htmlimpl.
+ # Create and populate lib/html.
#
html_src_dir = join(HOME, 'client', 'html')
html_dest_dir = join(LIB, 'html')
os.makedirs(html_dest_dir)
- htmlimpl_dest_dir = join(LIB, 'htmlimpl')
- os.makedirs(htmlimpl_dest_dir)
- copyfile(join(html_src_dir, 'release', 'html.dart'),
- join(html_dest_dir, 'html.dart'))
- copyfile(join(html_src_dir, 'release', 'htmlimpl.dart'),
- join(htmlimpl_dest_dir, 'htmlimpl.dart'))
+ copyfile(join(html_src_dir, 'frog', 'html_frog.dart'),
+ join(html_dest_dir, 'html_frog.dart'))
+ copyfile(join(html_src_dir, 'dartium', 'html_dartium.dart'),
+ join(html_dest_dir, 'html_dartium.dart'))
#
# Create and populate lib/dom.
« no previous file with comments | « tests/utils/utils.status ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698