| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:convert'; | 6 import 'dart:convert'; |
| 7 import 'dart:io'; | 7 import 'dart:io'; |
| 8 | 8 |
| 9 import 'compiler_configuration.dart'; | 9 import 'compiler_configuration.dart'; |
| 10 import 'http_server.dart'; | 10 import 'http_server.dart'; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 this.writeDebugLog, | 51 this.writeDebugLog, |
| 52 this.writeTestOutcomeLog, | 52 this.writeTestOutcomeLog, |
| 53 this.drtPath, | 53 this.drtPath, |
| 54 this.dartiumPath, | 54 this.dartiumPath, |
| 55 this.chromePath, | 55 this.chromePath, |
| 56 this.safariPath, | 56 this.safariPath, |
| 57 this.firefoxPath, | 57 this.firefoxPath, |
| 58 this.dartPath, | 58 this.dartPath, |
| 59 this.dartPrecompiledPath, | 59 this.dartPrecompiledPath, |
| 60 this.flutterPath, | 60 this.flutterPath, |
| 61 this.recordingPath, | |
| 62 this.replayPath, | |
| 63 this.taskCount, | 61 this.taskCount, |
| 64 int timeout, | 62 int timeout, |
| 65 this.shardCount, | 63 this.shardCount, |
| 66 this.shard, | 64 this.shard, |
| 67 this.stepName, | 65 this.stepName, |
| 68 this.testServerPort, | 66 this.testServerPort, |
| 69 this.testServerCrossOriginPort, | 67 this.testServerCrossOriginPort, |
| 70 this.testDriverErrorPort, | 68 this.testDriverErrorPort, |
| 71 this.localIP, | 69 this.localIP, |
| 72 this.dart2jsOptions, | 70 this.dart2jsOptions, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 // Various file paths. | 116 // Various file paths. |
| 119 | 117 |
| 120 final String drtPath; | 118 final String drtPath; |
| 121 final String dartiumPath; | 119 final String dartiumPath; |
| 122 final String chromePath; | 120 final String chromePath; |
| 123 final String safariPath; | 121 final String safariPath; |
| 124 final String firefoxPath; | 122 final String firefoxPath; |
| 125 final String dartPath; | 123 final String dartPath; |
| 126 final String dartPrecompiledPath; | 124 final String dartPrecompiledPath; |
| 127 final String flutterPath; | 125 final String flutterPath; |
| 128 final String recordingPath; | |
| 129 final String replayPath; | |
| 130 | 126 |
| 131 final int taskCount; | 127 final int taskCount; |
| 132 final int shardCount; | 128 final int shardCount; |
| 133 final int shard; | 129 final int shard; |
| 134 final String stepName; | 130 final String stepName; |
| 135 | 131 |
| 136 final int testServerPort; | 132 final int testServerPort; |
| 137 final int testServerCrossOriginPort; | 133 final int testServerCrossOriginPort; |
| 138 final int testDriverErrorPort; | 134 final int testDriverErrorPort; |
| 139 final String localIP; | 135 final String localIP; |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 | 728 |
| 733 case macos: | 729 case macos: |
| 734 return 'xcodebuild/'; | 730 return 'xcodebuild/'; |
| 735 } | 731 } |
| 736 | 732 |
| 737 throw "unreachable"; | 733 throw "unreachable"; |
| 738 } | 734 } |
| 739 | 735 |
| 740 String toString() => "System($name)"; | 736 String toString() => "System($name)"; |
| 741 } | 737 } |
| OLD | NEW |