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

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

Issue 9610002: remove node.js dependency by running the frog compiler in (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: language status Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 #library("test_options_parser"); 5 #library("test_options_parser");
6 6
7 #import("dart:io"); 7 #import("dart:io");
8 8
9 List<String> defaultTestSelectors = 9 List<String> defaultTestSelectors =
10 const ['dartc', 'samples', 'standalone', 'corelib', 'co19', 'language', 10 const ['dartc', 'samples', 'standalone', 'corelib', 'co19', 'language',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 Controls how dart code is compiled and executed. 65 Controls how dart code is compiled and executed.
66 66
67 vm: Run dart code on the standalone dart vm. 67 vm: Run dart code on the standalone dart vm.
68 68
69 frog: Compile dart code by running frog on the standalone dart vm, and 69 frog: Compile dart code by running frog on the standalone dart vm, and
70 run the resulting javascript on D8. 70 run the resulting javascript on D8.
71 71
72 leg: Compile dart code by running leg on the standalone dart vm, and 72 leg: Compile dart code by running leg on the standalone dart vm, and
73 run the resulting javascript on D8. 73 run the resulting javascript on D8.
74 74
75 frogsh: Compile dart code by running frog on node.js, and run the 75 frogsh: Compile dart code by running frog as javascript in DumpRenderTree,
ngeoffray 2012/03/06 07:14:20 frog as javascript -> frog compiled to javascript?
mattsh 2012/03/06 16:17:33 Done.
76 resulting javascript on the same instance of node.js. 76 and run the resulting javascript in DumpRenderTree.
77 77
78 dartium: Run dart code in a type="application/dart" script tag in a 78 dartium: Run dart code in a type="application/dart" script tag in a
79 dartium build of DumpRenderTree. 79 dartium build of DumpRenderTree.
80 80
81 chromium: Obsolete, not used, will be removed. 81 chromium: Obsolete, not used, will be removed.
82 82
83 frogium: Compile dart code by running frog on the standalone dart vm, 83 frogium: Compile dart code by running frog on the standalone dart vm,
84 and run the resulting javascript in a javascript script tag in 84 and run the resulting javascript in a javascript script tag in
85 a dartium build of DumpRenderTree. 85 a dartium build of DumpRenderTree.
86 86
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 return option; 536 return option;
537 } 537 }
538 } 538 }
539 print('Unknown test option $name'); 539 print('Unknown test option $name');
540 exit(1); 540 exit(1);
541 } 541 }
542 542
543 543
544 List<_TestOptionSpecification> _options; 544 List<_TestOptionSpecification> _options;
545 } 545 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698