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

Unified Diff: compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java

Issue 9702034: Removes dartc reliance on its own libraries, now can be targeted at any implementation's libraries (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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: compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
diff --git a/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java b/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
index 4177d483146e3c43d7903f19724cbd586b908a63..e2b3d5f721989e9e74c5cfdb063efcf7abf37a85 100644
--- a/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
+++ b/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
@@ -22,7 +22,8 @@ import java.util.List;
* A mock configuration for use in tests.
*/
public class TestCompilerConfiguration implements CompilerConfiguration {
- private final SystemLibraryManager systemLibraryManager = new SystemLibraryManager();
+ private final SystemLibraryManager systemLibraryManager =
+ new SystemLibraryManager("../lib", "runtime");
@Override
public boolean developerModeChecks() {

Powered by Google App Engine
This is Rietveld 408576698