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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 "type": "junit_test", | 156 "type": "junit_test", |
157 }, | 157 }, |
158 "base_unittests": { | 158 "base_unittests": { |
159 "label": "//base:base_unittests", | 159 "label": "//base:base_unittests", |
160 "type": "console_test_launcher", | 160 "type": "console_test_launcher", |
161 }, | 161 }, |
162 "battor_agent_unittests": { | 162 "battor_agent_unittests": { |
163 "label": "//tools/battor_agent:battor_agent_unittests", | 163 "label": "//tools/battor_agent:battor_agent_unittests", |
164 "type": "console_test_launcher", | 164 "type": "console_test_launcher", |
165 }, | 165 }, |
| 166 "blimp_browsertests": { |
| 167 "label": "//blimp:blimp_browsertests", |
| 168 "type": "console_test_launcher", |
| 169 }, |
| 170 "blimp_test_apk": { |
| 171 "label": "//blimp/client/app:blimp_test_apk", |
| 172 "type": "console_test_launcher", |
| 173 }, |
| 174 "blimp_unittests": { |
| 175 "label": "//blimp:blimp_unittests", |
| 176 "type": "console_test_launcher", |
| 177 }, |
166 "blink_heap_unittests": { | 178 "blink_heap_unittests": { |
167 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", | 179 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", |
168 "type": "console_test_launcher", | 180 "type": "console_test_launcher", |
169 }, | 181 }, |
170 "blink_platform_unittests": { | 182 "blink_platform_unittests": { |
171 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", | 183 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", |
172 "type": "console_test_launcher", | 184 "type": "console_test_launcher", |
173 }, | 185 }, |
174 "blink_tests": { | 186 "blink_tests": { |
175 "label": "//:blink_tests", | 187 "label": "//:blink_tests", |
(...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 }, | 993 }, |
982 "wm_unittests": { | 994 "wm_unittests": { |
983 "label": "//ui/wm:wm_unittests", | 995 "label": "//ui/wm:wm_unittests", |
984 "type": "windowed_test_launcher", | 996 "type": "windowed_test_launcher", |
985 }, | 997 }, |
986 "wtf_unittests": { | 998 "wtf_unittests": { |
987 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 999 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
988 "type": "console_test_launcher", | 1000 "type": "console_test_launcher", |
989 }, | 1001 }, |
990 } | 1002 } |
OLD | NEW |