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_test_apk": { | |
167 "label": "//blimp/client/app:blimp_test_apk", | |
168 "type": "console_test_launcher", | |
169 }, | |
170 "blimp_unittests": { | 166 "blimp_unittests": { |
171 "label": "//blimp:blimp_unittests", | 167 "label": "//blimp:blimp_unittests", |
172 "type": "console_test_launcher", | 168 "type": "console_test_launcher", |
173 }, | 169 }, |
174 "blink_heap_unittests": { | 170 "blink_heap_unittests": { |
175 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", | 171 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", |
176 "type": "console_test_launcher", | 172 "type": "console_test_launcher", |
177 }, | 173 }, |
178 "blink_platform_unittests": { | 174 "blink_platform_unittests": { |
179 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", | 175 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", |
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 }, | 991 }, |
996 "wm_unittests": { | 992 "wm_unittests": { |
997 "label": "//ui/wm:wm_unittests", | 993 "label": "//ui/wm:wm_unittests", |
998 "type": "windowed_test_launcher", | 994 "type": "windowed_test_launcher", |
999 }, | 995 }, |
1000 "wtf_unittests": { | 996 "wtf_unittests": { |
1001 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 997 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
1002 "type": "console_test_launcher", | 998 "type": "console_test_launcher", |
1003 }, | 999 }, |
1004 } | 1000 } |
OLD | NEW |