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

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

Issue 2027063003: Move Windows build output from //build to //out (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/gyp/configurations_msvs.gypi ('k') | tools/utils.py » ('j') | 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 8bc8e9a165c7f2452c6ad53b145c786f3c2398ee..ca959a89a992ea6bf13b33d375dd80c5cadfc8d0 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -2235,12 +2235,10 @@ class TestUtils {
static String outputDir(Map configuration) {
var result = '';
var system = configuration['system'];
- if (system == 'linux' || system == 'android') {
+ if (system == 'linux' || system == 'android' || system == 'windows') {
result = 'out/';
} else if (system == 'macos') {
result = 'xcodebuild/';
- } else if (system == 'windows') {
- result = 'build/';
} else {
throw new Exception('Unknown operating system: "$system"');
}
« no previous file with comments | « tools/gyp/configurations_msvs.gypi ('k') | tools/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698