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

Unified Diff: utils/apidoc/mdn/extractRunner.js

Issue 10889017: Repair bitrot in the utils/apidoc/mdn/ code. It now runs all the way through, (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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: utils/apidoc/mdn/extractRunner.js
===================================================================
--- utils/apidoc/mdn/extractRunner.js (revision 11346)
+++ utils/apidoc/mdn/extractRunner.js (working copy)
@@ -114,9 +114,13 @@
fs.writeFileSync(absoluteDumpFileName + ".json", JSON.stringify(parseArgs),
'utf8');
+ /*
// TODO(jacobr): Make this run on platforms other than OS X.
var cmd = '../../../client/tests/drt/DumpRenderTree.app/Contents/MacOS/' +
'DumpRenderTree ' + absoluteDumpFileName;
+ */
+ // TODO(eub): Make this run on platforms other than Linux.
+ var cmd = '../../../client/tests/drt/DumpRenderTree ' + absoluteDumpFileName;
console.log(cmd);
exec(cmd,
function (error, stdout, stderr) {
@@ -187,4 +191,4 @@
for (var p = 0; p < numProcesses; p++) {
processNextTask();
-}
+}

Powered by Google App Engine
This is Rietveld 408576698