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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 "type": "windowed_test_launcher", | 200 "type": "windowed_test_launcher", |
201 }, | 201 }, |
202 "compositor_unittests": { | 202 "compositor_unittests": { |
203 "label": "//ui/compositor:compositor_unittests", | 203 "label": "//ui/compositor:compositor_unittests", |
204 "type": "windowed_test_launcher", | 204 "type": "windowed_test_launcher", |
205 }, | 205 }, |
206 "content_browsertests": { | 206 "content_browsertests": { |
207 "label": "//content/test:content_browsertests", | 207 "label": "//content/test:content_browsertests", |
208 "type": "windowed_test_launcher", | 208 "type": "windowed_test_launcher", |
209 }, | 209 }, |
210 "content_gl_tests": { | |
211 "label": "//content/test:content_gl_tests", | |
212 "type": "raw", | |
213 "args": [], | |
214 }, | |
215 "content_site_isolation_browsertests": { | 210 "content_site_isolation_browsertests": { |
216 "label": "//content/test:content_site_isolation_browsertests", | 211 "label": "//content/test:content_site_isolation_browsertests", |
217 "label_type": "group", | 212 "label_type": "group", |
218 "type": "windowed_test_launcher", | 213 "type": "windowed_test_launcher", |
219 "executable": "content_browsertests", | 214 "executable": "content_browsertests", |
220 "args": ["--site-per-process", "--test-launcher-filter-file=../../testing/bu
ildbot/filters/site-per-process.content_browsertests.filter"], | 215 "args": ["--site-per-process", "--test-launcher-filter-file=../../testing/bu
ildbot/filters/site-per-process.content_browsertests.filter"], |
221 }, | 216 }, |
222 "content_unittests": { | 217 "content_unittests": { |
223 "label": "//content/test:content_unittests", | 218 "label": "//content/test:content_unittests", |
224 "type": "windowed_test_launcher", | 219 "type": "windowed_test_launcher", |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 }, | 565 }, |
571 "wm_unittests": { | 566 "wm_unittests": { |
572 "label": "//ui/wm:wm_unittests", | 567 "label": "//ui/wm:wm_unittests", |
573 "type": "windowed_test_launcher", | 568 "type": "windowed_test_launcher", |
574 }, | 569 }, |
575 "wtf_unittests": { | 570 "wtf_unittests": { |
576 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 571 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
577 "type": "console_test_launcher", | 572 "type": "console_test_launcher", |
578 }, | 573 }, |
579 } | 574 } |
OLD | NEW |