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

Unified Diff: compiler/java/com/google/dart/compiler/SystemLibraryManager.java

Issue 10083015: Revert "Moves the 'import_*.config' files in dart-sdk into a new directory" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | dart.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/java/com/google/dart/compiler/SystemLibraryManager.java
diff --git a/compiler/java/com/google/dart/compiler/SystemLibraryManager.java b/compiler/java/com/google/dart/compiler/SystemLibraryManager.java
index d5824c63987115f1af51971e5a9178abbc3ebb0d..ee06b332fa5fe861166dcf39b800d585af3fd7b1 100644
--- a/compiler/java/com/google/dart/compiler/SystemLibraryManager.java
+++ b/compiler/java/com/google/dart/compiler/SystemLibraryManager.java
@@ -125,11 +125,8 @@ public class SystemLibraryManager {
return result;
}
- /**
- * The import config files have the path: dart-sdk/_internal/config/import_<platform>.config
- */
protected InputStream getImportConfigStream() {
- File file = new File(new File(new File(sdkLibPath, "_internal"), "config"),
+ File file = new File(new File(sdkLibPath, "config"),
String.format(IMPORT_CONFIG, platformName));
if (!file.exists()) {
throw new InternalCompilerException("Failed to find " + file.toString()
« no previous file with comments | « no previous file | dart.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698