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

Unified Diff: tools/testing/dart/compiler_configuration.dart

Issue 841193003: cleanup to tools/testing/dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: one last bit Created 5 years, 11 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 | « tools/testing/dart/co19_test_config.dart ('k') | tools/testing/dart/dependency_graph.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/compiler_configuration.dart
diff --git a/tools/testing/dart/compiler_configuration.dart b/tools/testing/dart/compiler_configuration.dart
index 668804a361ae5f852b267da6d1aa989aa6664a93..64b752cc2ae1a66ccdab8b8fc58c642a32599d84 100644
--- a/tools/testing/dart/compiler_configuration.dart
+++ b/tools/testing/dart/compiler_configuration.dart
@@ -7,30 +7,11 @@ library compiler_configuration;
import 'dart:io' show
Platform;
-import 'runtime_configuration.dart' show
- RuntimeConfiguration;
+import 'lib/command.dart';
+import 'lib/test_information.dart';
+import 'lib/test_utils.dart';
-import 'test_runner.dart' show
- Command,
- CommandBuilder,
- CompilationCommand;
-
-import 'test_suite.dart' show
- TestInformation,
- TestUtils;
-
-/// Grouping of a command with its expected result.
-class CommandArtifact {
- final List<Command> commands;
-
- /// Expected result of running [command].
- final String filename;
-
- /// MIME type of [filename].
- final String mimeType;
-
- CommandArtifact(this.commands, this.filename, this.mimeType);
-}
+import 'runtime_configuration.dart';
Uri nativeDirectoryToUri(String nativePath) {
Uri uri = new Uri.file(nativePath);
« no previous file with comments | « tools/testing/dart/co19_test_config.dart ('k') | tools/testing/dart/dependency_graph.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698