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

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

Issue 10854232: Continue removal of frog. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
Index: tools/testing/dart/test_options.dart
===================================================================
--- tools/testing/dart/test_options.dart (revision 10970)
+++ tools/testing/dart/test_options.dart (working copy)
@@ -71,17 +71,14 @@
dart2dart: Compile Dart code to Dart code
(only valid with the following runtimes: vm, drt)
- dart2js: Compile dart code to JavaScript by running dart2js (leg).
- (only valid with the following runtimes: same as frog)
+ dart2js: Compile dart code to JavaScript by running dart2js.
+ (only valid with the following runtimes: d8, drt, chrome,
+ safari, ie, firefox, opera, none (compile only)),
dartc: Perform static analysis on Dart code by running dartc.
- (only valid with the following runtimes: none)
-
- frog: (DEPRECATED) Compile dart code to JavaScript by running the
- frog compiler. (only valid with the following runtimes: d8,
- drt, chrome, safari, ie, firefox, opera, none (compile only))''',
+ (only valid with the following runtimes: none)''',
['-c', '--compiler'],
- ['none', 'dart2dart', 'frog', 'dart2js', 'dartc'],
+ ['none', 'dart2dart', 'dart2js', 'dartc'],
'none'),
new _TestOptionSpecification(
'runtime',
@@ -214,12 +211,6 @@
false,
'bool'),
new _TestOptionSpecification(
- 'frog',
- 'Path to frog script or executable',
- ['--frog'],
- [],
- ''),
- new _TestOptionSpecification(
'dart',
'Path to dart executable',
['--dart'],
@@ -238,12 +229,6 @@
[],
''),
new _TestOptionSpecification(
- 'froglib',
- 'Path to frog library',
- ['--froglib'],
- [],
- ''),
- new _TestOptionSpecification(
'use_sdk',
'''Use compiler or runtime from the SDK.
@@ -392,7 +377,6 @@
bool isValid = true;
List<String> validRuntimes;
switch (config['compiler']) {
- case 'frog':
case 'dart2js':
// Note: by adding 'none' as a configuration, if the user
// runs test.py -c dart2js -r drt,none the dart2js_none and

Powered by Google App Engine
This is Rietveld 408576698