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

Unified Diff: tools/dom/docs/bin/docs.dart

Issue 19931008: Fix paths in DOM doc test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 | tools/dom/docs/lib/docs.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/docs/bin/docs.dart
diff --git a/tools/dom/docs/bin/docs.dart b/tools/dom/docs/bin/docs.dart
index 804d5f70ef53a04dc96813c2212c469d884b2cbb..17728f0fe720e014a819cc79f29d47370f9cb728 100644
--- a/tools/dom/docs/bin/docs.dart
+++ b/tools/dom/docs/bin/docs.dart
@@ -14,10 +14,11 @@ import 'package:path/path.dart' as path;
import '../lib/docs.dart';
-final String json_path =
+final String json_path =
path.normalize(path.join(scriptDir, '..', 'docs.json'));
-final String lib_path =
- path.normalize(path.join(scriptDir, '..', '..', '..', '..', 'sdk'));
+final String lib_path =
+ path.toUri(path.normalize(
+ path.join(scriptDir, '..', '..', '..', '..', 'sdk'))).toString();
main() {
print('Converting HTML docs from $lib_path to $json_path.');
« no previous file with comments | « no previous file | tools/dom/docs/lib/docs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698