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

Unified Diff: tools/dom/dom.py

Issue 14732003: Implement Model-Driven-Views spec for Dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: try upload again Created 7 years, 7 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: tools/dom/dom.py
diff --git a/tools/dom/dom.py b/tools/dom/dom.py
index 15697b30b13ca2183a880475b7ff32961daea1a1..793764caf40fa6e2a3ee2ba4cc2f7ac9a4135eca 100755
--- a/tools/dom/dom.py
+++ b/tools/dom/dom.py
@@ -102,8 +102,10 @@ def compile_dart2js(dart_file, checked):
def gen():
os.chdir(os.path.join('tools', 'dom', 'scripts'))
- return call([os.path.join(os.getcwd(), 'dartdomgenerator.py'),
+ result = call([os.path.join(os.getcwd(), 'dartdomgenerator.py'),
'--rebuild', '--parallel', '--systems=htmldart2js,htmldartium'])
+ os.chdir(os.path.join('..', '..', '..'))
+ return result
def http_server():
print('Browse tests at '

Powered by Google App Engine
This is Rietveld 408576698