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

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

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
Index: client/dom/scripts/dartdomgenerator.py
diff --git a/client/dom/scripts/dartdomgenerator.py b/client/dom/scripts/dartdomgenerator.py
index 27ecad4d0f366dde28d803dbb41d66ec2540c236..a1f6158419ab383197dffb1a4ab9a80e6ed13d20 100755
--- a/client/dom/scripts/dartdomgenerator.py
+++ b/client/dom/scripts/dartdomgenerator.py
@@ -146,6 +146,11 @@ def GenerateDOM(systems, generate_html_systems, output_dir, use_database_cache):
subprocess.call(['cd ../../html ; ../tools/copy_dart.py frog html_frog.dart'],
shell=True);
+ if 'htmldartium' in systems:
+ _logger.info('Copy html_dartium to ../html/dartium/')
+ subprocess.call(['cd ../../html ; ../tools/copy_dart.py dartium html_dartium.dart'],
+ shell=True);
+
def main():
parser = optparse.OptionParser()
parser.add_option('--systems', dest='systems',
« no previous file with comments | « no previous file | client/dom/scripts/dartgenerator.py » ('j') | client/dom/templates/html/dartium/html_dartium.darttemplate » ('J')

Powered by Google App Engine
This is Rietveld 408576698