|
25 | 25 | 'win32': { |
26 | 26 | 'chrome': 'chrome.exe', |
27 | 27 | 'crashpad_handler': 'crashpad_handler.exe', |
28 | | - 'dart': 'dart.exe',\ |
29 | | - 'dart_product': 'dart_product.exe', |
| 28 | + 'dart': 'dart.exe', |
| 29 | + 'dartvm': 'dartvm.exe', |
30 | 30 | 'dartaotruntime': 'dartaotruntime.exe', |
31 | 31 | 'dartaotruntime_product': 'dartaotruntime_product.exe', |
32 | 32 | 'firefox': 'firefox.exe', |
33 | 33 | 'gen_snapshot': 'gen_snapshot.exe', |
| 34 | + 'gen_snapshot_product': 'gen_snapshot_product.exe', |
| 35 | + 'run_vm_tests': 'run_vm_tests.exe', |
34 | 36 | 'git': 'git.exe', |
35 | 37 | 'iexplore': 'iexplore.exe', |
36 | 38 | 'vctip': 'vctip.exe', |
|
39 | 41 | 'linux': { |
40 | 42 | 'chrome': 'chrome', |
41 | 43 | 'dart': 'dart', |
42 | | - 'dart_product': 'dart_product', |
| 44 | + 'dartvm': 'dartvm', |
43 | 45 | 'dartaotruntime': 'dartaotruntime', |
44 | 46 | 'dartaotruntime_product': 'dartaotruntime_product', |
45 | 47 | 'firefox': 'firefox', |
46 | 48 | 'gen_snapshot': 'gen_snapshot', |
| 49 | + 'gen_snapshot_product': 'gen_snapshot_product', |
| 50 | + 'run_vm_tests': 'run_vm_tests', |
47 | 51 | 'flutter_tester': 'flutter_tester', |
48 | 52 | 'git': 'git', |
49 | 53 | }, |
50 | 54 | 'macos': { |
51 | 55 | 'chrome': 'Chrome', |
52 | 56 | 'chrome_helper': 'Chrome Helper', |
53 | 57 | 'dart': 'dart', |
54 | | - 'dart_product': 'dart_product', |
| 58 | + 'dartvm': 'dartvm', |
55 | 59 | 'dartaotruntime': 'dartaotruntime', |
56 | 60 | 'dartaotruntime_product': 'dartaotruntime_product', |
57 | 61 | 'firefox': 'firefox', |
58 | 62 | 'gen_snapshot': 'gen_snapshot', |
| 63 | + 'gen_snapshot_product': 'gen_snapshot_product', |
| 64 | + 'run_vm_tests': 'run_vm_tests', |
59 | 65 | 'git': 'git', |
60 | 66 | 'safari': 'Safari', |
61 | 67 | } |
@@ -274,9 +280,12 @@ def KillVSBuild(): |
274 | 280 |
|
275 | 281 | def KillDart(): |
276 | 282 | status = Kill("dart", dump_stacks=True) |
| 283 | + status += Kill("dartvm", dump_stacks=True) |
277 | 284 | status += Kill("gen_snapshot", dump_stacks=True) |
| 285 | + status += Kill("gen_snapshot_product", dump_stacks=True) |
278 | 286 | status += Kill("dartaotruntime", dump_stacks=True) |
279 | 287 | status += Kill("dartaotruntime_product", dump_stacks=True) |
| 288 | + status += Kill("run_vm_tests", dump_stacks=True) |
280 | 289 | status += Kill("flutter_tester", dump_stacks=True) |
281 | 290 | status += Kill("crashpad_handler", dump_stacks=True) |
282 | 291 | return status |
|
0 commit comments