Chromium Code Reviews| Index: tools/testing/dart/test_options.dart |
| =================================================================== |
| --- tools/testing/dart/test_options.dart (revision 14062) |
| +++ tools/testing/dart/test_options.dart (working copy) |
| @@ -131,6 +131,13 @@ |
| false, |
| 'bool'), |
| new _TestOptionSpecification( |
| + 'minify', |
| + 'Enable minification in the compiler', |
| + ['--minify'], |
| + [], |
| + false, |
| + 'bool'), |
| + new _TestOptionSpecification( |
| 'timeout', |
| 'Timeout in seconds', |
| ['-t', '--timeout'], |
| @@ -471,6 +478,8 @@ |
| configuration['unchecked'] = !configuration['checked']; |
| configuration['host_unchecked'] = !configuration['host_checked']; |
| + configuration['nominify'] = !configuration['nominify']; |
|
ahe
2012/10/25 08:56:31
I think the right-hand side should be !configurati
|
| + |
| String runtime = configuration['runtime']; |
| if (runtime == 'firefox') { |
| configuration['runtime'] == 'ff'; |