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

Unified Diff: dart/frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py

Issue 9430046: Explicitly use node.js in the cases where it is needed. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
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
« no previous file with comments | « dart/frog/scripts/bootstrap/frog_wrapper.py ('k') | dart/tests/language/language-leg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py
diff --git a/dart/frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py b/dart/frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py
index 21112b58ef49c2eafcfe25121d8d8653fc7003bb..b74c0de722dc2282cd183bdc00fc2f7e81c67fbd 100644
--- a/dart/frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py
+++ b/dart/frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py
@@ -31,7 +31,10 @@ def main(args):
vm = vm + '.exe'
shutil.copy(os.path.join(HOME, 'scripts', 'bootstrap', 'frogsh.bat'),
js_out + '.bat')
- frog_args = ['frog.py', '--vm=' + vm, '--', '--out=' + js_out, 'minfrog.dart']
+ frog_args = ['frog.py', '--vm=' + vm,
+ '--js_cmd=node --crankshaft',
+ '--',
+ '--out=' + js_out, 'minfrog.dart']
# TODO(ngeoffray): Compile frogsh without checks integrated.
# if js_out.find('Release') != -1:
« no previous file with comments | « dart/frog/scripts/bootstrap/frog_wrapper.py ('k') | dart/tests/language/language-leg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698