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

Unified Diff: utils/compiler/create_snapshot.dart

Issue 23035004: Fix Windows bugs in r26181 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « tests/lib/mirrors/library_uri_io_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/compiler/create_snapshot.dart
diff --git a/utils/compiler/create_snapshot.dart b/utils/compiler/create_snapshot.dart
index 2f2bd175dcc7064091270f825f4cdf30ddb7d26c..37920a3e3bf16e19123538c1fd69223cc750ee9e 100644
--- a/utils/compiler/create_snapshot.dart
+++ b/utils/compiler/create_snapshot.dart
@@ -22,8 +22,8 @@ Future<String> getSnapshotGenerationFile(var options, var args, var rootPath) {
return getVersion(options, rootPath).then((version) {
var snapshotGenerationText =
"""
-import '${dart2js.toFilePath()}' as dart2jsMain;
-import '${dartdoc.toFilePath()}' as dartdocMain;
+import '${dart2js.toFilePath(windows: false)}' as dart2jsMain;
ahe 2013/08/15 12:14:07 This still isn't right. dart2js is already a URI,
+import '${dartdoc.toFilePath(windows: false)}' as dartdocMain;
import 'dart:io';
void main() {
« no previous file with comments | « tests/lib/mirrors/library_uri_io_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698