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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "type": "windowed_test_launcher", | 125 "type": "windowed_test_launcher", |
126 }, | 126 }, |
127 "base_unittests": { | 127 "base_unittests": { |
128 "label": "//base:base_unittests", | 128 "label": "//base:base_unittests", |
129 "type": "console_test_launcher", | 129 "type": "console_test_launcher", |
130 }, | 130 }, |
131 "battor_agent_unittests": { | 131 "battor_agent_unittests": { |
132 "label": "//tools/battor_agent:battor_agent_unittests", | 132 "label": "//tools/battor_agent:battor_agent_unittests", |
133 "type": "console_test_launcher", | 133 "type": "console_test_launcher", |
134 }, | 134 }, |
| 135 "blimp_browsertests": { |
| 136 "label": "//blimp:blimp_browsertests", |
| 137 "type": "console_test_launcher", |
| 138 }, |
135 "blimp_test_apk": { | 139 "blimp_test_apk": { |
136 "label": "//blimp/client:blimp_test_apk", | 140 "label": "//blimp/client:blimp_test_apk", |
137 "type": "console_test_launcher", | 141 "type": "console_test_launcher", |
138 }, | 142 }, |
139 "blimp_unittests": { | 143 "blimp_unittests": { |
140 "label": "//blimp:blimp_unittests", | 144 "label": "//blimp:blimp_unittests", |
141 "type": "console_test_launcher", | 145 "type": "console_test_launcher", |
142 }, | 146 }, |
143 "blink_heap_unittests": { | 147 "blink_heap_unittests": { |
144 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests", | 148 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests", |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 }, | 609 }, |
606 "wm_unittests": { | 610 "wm_unittests": { |
607 "label": "//ui/wm:wm_unittests", | 611 "label": "//ui/wm:wm_unittests", |
608 "type": "windowed_test_launcher", | 612 "type": "windowed_test_launcher", |
609 }, | 613 }, |
610 "wtf_unittests": { | 614 "wtf_unittests": { |
611 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 615 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
612 "type": "console_test_launcher", | 616 "type": "console_test_launcher", |
613 }, | 617 }, |
614 } | 618 } |
OLD | NEW |