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

Unified Diff: utils/apidoc/apidoc.dart

Issue 10516002: Fix apidoc after r8231. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
« 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: utils/apidoc/apidoc.dart
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
index 6b9539ac45aa641c7811b57905b3d088a93a2b8b..92f12c9445ec459705b847c88213919f393e593d 100644
--- a/utils/apidoc/apidoc.dart
+++ b/utils/apidoc/apidoc.dart
@@ -67,7 +67,6 @@ void main() {
}
final frogPath = joinPaths(doc.scriptDir, '../../frog/');
- final libDir = joinPaths(frogPath, 'lib');
if (compilerPath === null) {
compilerPath = joinPaths(frogPath, 'frog.py');
@@ -80,7 +79,7 @@ void main() {
final clientScript = (mode == doc.MODE_STATIC) ?
'static' : 'live-nav';
- final Future scriptCompiled = doc.compileScript(compilerPath, libDir,
+ final Future scriptCompiled = doc.compileScript(compilerPath,
'${doc.scriptDir}/../../lib/dartdoc/client-$clientScript.dart',
'${outputDir}/client-$clientScript.js');
« 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