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

Side by Side Diff: tools/testing/dart/configuration.dart

Issue 2964043004: Run dartdevc tests on drt instead of Chrome on the bots. (Closed)
Patch Set: Created 3 years, 5 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 unified diff | Download patch
« no previous file with comments | « tools/bots/ddc_tests.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 Runtime.chromeOnAndroid, 535 Runtime.chromeOnAndroid,
536 Runtime.safariMobileSim 536 Runtime.safariMobileSim
537 ]; 537 ];
538 538
539 case Compiler.dart2js: 539 case Compiler.dart2js:
540 case Compiler.dartdevc: 540 case Compiler.dartdevc:
541 // TODO(rnystrom): Expand to support other JS execution environments 541 // TODO(rnystrom): Expand to support other JS execution environments
542 // (other browsers, d8) when tested and working. 542 // (other browsers, d8) when tested and working.
543 return const [ 543 return const [
544 Runtime.none, 544 Runtime.none,
545 Runtime.drt,
545 Runtime.chrome, 546 Runtime.chrome,
546 ]; 547 ];
547 548
548 case Compiler.dart2analyzer: 549 case Compiler.dart2analyzer:
549 return const [Runtime.none]; 550 return const [Runtime.none];
550 case Compiler.appJit: 551 case Compiler.appJit:
551 case Compiler.dartk: 552 case Compiler.dartk:
552 return const [Runtime.vm, Runtime.selfCheck]; 553 return const [Runtime.vm, Runtime.selfCheck];
553 case Compiler.precompiler: 554 case Compiler.precompiler:
554 case Compiler.dartkp: 555 case Compiler.dartkp:
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 752
752 case macos: 753 case macos:
753 return 'xcodebuild/'; 754 return 'xcodebuild/';
754 } 755 }
755 756
756 throw "unreachable"; 757 throw "unreachable";
757 } 758 }
758 759
759 String toString() => "System($name)"; 760 String toString() => "System($name)";
760 } 761 }
OLDNEW
« no previous file with comments | « tools/bots/ddc_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698