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

Unified Diff: frog/scripts/bootstrap/build_frogpad_js.py

Issue 9610002: remove node.js dependency by running the frog compiler in (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: no change Created 8 years, 9 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 | « frog/dart-frog.gyp ('k') | frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/scripts/bootstrap/build_frogpad_js.py
diff --git a/frog/scripts/bootstrap/build_frogpad_js.py b/frog/scripts/bootstrap/build_frogpad_js.py
index c4e09586408c043440150eb4d6751c9b876849dc..d3b8e099e586b8f730d807a38b09a3e06b5840f3 100644
--- a/frog/scripts/bootstrap/build_frogpad_js.py
+++ b/frog/scripts/bootstrap/build_frogpad_js.py
@@ -14,12 +14,7 @@ import frog
# Runs frog.dart on the dart vm to compile frogpad.dart to frogpad.js
def main(args):
- if len(args) >= 2:
- product_dir = args[1]
- else:
- product_dir = os.path.abspath(os.path.join(os.path.dirname(__file__),
- '..', '..', '..', 'out/Release_ia32'))
- print product_dir
+ product_dir = args[1]
vm = os.path.join(product_dir, 'dart')
frogpad_dart = os.path.join(product_dir, '..', '..',
« no previous file with comments | « frog/dart-frog.gyp ('k') | frog/scripts/bootstrap/frogsh_bootstrap_wrapper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698