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/test_suite.dart

Issue 1902073003: VM: Remove redundant build target dart_product. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: restored test configuration Created 4 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
« runtime/bin/main.cc ('K') | « tools/testing/dart/runtime_configuration.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index d288da8ddccac001d1bd9ffe4923ba34fdd7a281..dbab65e1c78a852fc644d343c99b60348b16f732 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -234,21 +234,6 @@ abstract class TestSuite {
return dartExecutable;
}
- String get dartVmProductBinaryFileName {
- // Controlled by user with the option "--dart".
- String dartExecutable = configuration['dart'];
-
- if (dartExecutable == '') {
- String suffix = executableBinarySuffix;
- dartExecutable = useSdk
- ? '$buildDir/dart-sdk/bin/dart_product$suffix'
- : '$buildDir/dart_product$suffix';
- }
-
- TestUtils.ensureExists(dartExecutable, configuration);
- return dartExecutable;
- }
-
String get d8FileName {
var suffix = getExecutableSuffix('d8');
var d8Dir = TestUtils.dartDir.append('third_party/d8');
« runtime/bin/main.cc ('K') | « tools/testing/dart/runtime_configuration.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698