OLD | NEW |
1 ## Copyright 2015 The Chromium Authors. All rights reserved. | 1 ## Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and | 5 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and |
6 # test type classifications for the tests that are run on the bots. | 6 # test type classifications for the tests that are run on the bots. |
7 # | 7 # |
8 # This mapping is used by MB so that we can uniformly refer to test binaries | 8 # This mapping is used by MB so that we can uniformly refer to test binaries |
9 # by their Ninja target names in the recipes and not need to worry about how | 9 # by their Ninja target names in the recipes and not need to worry about how |
10 # they are referred to in GN or GYP specifically (the GYP target name is pretty | 10 # they are referred to in GN or GYP specifically (the GYP target name is pretty |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "type": "windowed_test_launcher", | 53 "type": "windowed_test_launcher", |
54 }, | 54 }, |
55 "app_shell_unittests": { | 55 "app_shell_unittests": { |
56 "label": "//extensions/shell:app_shell_unittests", | 56 "label": "//extensions/shell:app_shell_unittests", |
57 "type": "windowed_test_launcher", | 57 "type": "windowed_test_launcher", |
58 }, | 58 }, |
59 "ash_unittests": { | 59 "ash_unittests": { |
60 "label": "//ash:ash_unittests", | 60 "label": "//ash:ash_unittests", |
61 "type": "unknown", | 61 "type": "unknown", |
62 }, | 62 }, |
| 63 "audio_unittests": { |
| 64 "label": "//media:audio_unittests", |
| 65 "type": "raw", |
| 66 "args": [], |
| 67 }, |
63 "aura_unittests": { | 68 "aura_unittests": { |
64 "label": "//ui/aura:aura_unittests", | 69 "label": "//ui/aura:aura_unittests", |
65 "type": "windowed_test_launcher", | 70 "type": "windowed_test_launcher", |
66 }, | 71 }, |
67 "base_unittests": { | 72 "base_unittests": { |
68 "label": "//base:base_unittests", | 73 "label": "//base:base_unittests", |
69 "type": "console_test_launcher", | 74 "type": "console_test_launcher", |
70 }, | 75 }, |
71 "blimp_unittests": { | 76 "blimp_unittests": { |
72 "label": "//blimp:blimp_unittests", | 77 "label": "//blimp:blimp_unittests", |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 }, | 473 }, |
469 "wm_unittests": { | 474 "wm_unittests": { |
470 "label": "//ui/wm:wm_unittests", | 475 "label": "//ui/wm:wm_unittests", |
471 "type": "windowed_test_launcher", | 476 "type": "windowed_test_launcher", |
472 }, | 477 }, |
473 "wtf_unittests": { | 478 "wtf_unittests": { |
474 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 479 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
475 "type": "console_test_launcher", | 480 "type": "console_test_launcher", |
476 }, | 481 }, |
477 } | 482 } |
OLD | NEW |