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

Unified Diff: client/tools/htmlconverter.py

Issue 9517007: Fix htmlconverter to pick up frog from top-level out (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tools/htmlconverter.py
diff --git a/client/tools/htmlconverter.py b/client/tools/htmlconverter.py
index d62fa0aff8c3d9b5ad61397af8abc16c9f980961..ffac2d84406b6491f413da696e8bf3d3e07ed1c0 100755
--- a/client/tools/htmlconverter.py
+++ b/client/tools/htmlconverter.py
@@ -185,12 +185,12 @@ class DartCompiler(object):
if self.optimize:
cmd.append('--optimize')
else:
- binary = abspath(join(DART_PATH, 'frog',
+ binary = abspath(join(DART_PATH,
utils.GetBuildRoot(utils.GuessOS(), 'release', 'ia32'),
'frog', 'bin', 'frogsh'))
if not exists(binary):
raise ConverterException(FROG_NOT_FOUND_ERROR % DART_PATH)
- cmd = [binary, '--compile-only',
+ cmd = [binary, '--compile-only',
'--libdir=' + join(DART_PATH, 'frog', 'lib'),
'--out=' + self.outputFileName(inputfile, outdir)]
if self.extra_flags != "":
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698