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

Unified Diff: client/dom/scripts/dartdomgenerator.py

Issue 9350030: Generate dummy dom to replace wrapping dom for dartc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 | « client/dom/dom_dummy.dart ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/dartdomgenerator.py
diff --git a/client/dom/scripts/dartdomgenerator.py b/client/dom/scripts/dartdomgenerator.py
index 679536ba8fd09b2d6500c0430865c11bfc95a928..c05c2fc38c6b7b91c36d98bf9c40063e1ccf8977 100755
--- a/client/dom/scripts/dartdomgenerator.py
+++ b/client/dom/scripts/dartdomgenerator.py
@@ -14,8 +14,8 @@ import shutil
import sys
DOM_LIBRARY = 'dom.dart'
-DOM_DEFAULT_LIBRARY = 'wrapping_dom.dart'
-DEFAULT_SYSTEM = 'wrapping'
+DOM_DEFAULT_LIBRARY = 'dom_dummy.dart'
+DEFAULT_SYSTEM = 'dummy'
_logger = logging.getLogger('dartdomgenerator')
@@ -90,8 +90,8 @@ def main():
parser = optparse.OptionParser()
parser.add_option('--systems', dest='systems',
action='store', type='string',
- default='frog,wrapping',
- help='Systems to generate (frog, native, wrapping)')
+ default='frog,dummy',
+ help='Systems to generate (frog, native, dummy)')
parser.add_option('--output-dir', dest='output_dir',
action='store', type='string',
default=None,
« no previous file with comments | « client/dom/dom_dummy.dart ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698