Roll src/third_party/WebKit 90b25ae:5baf25d (svn 200622:200623)
[chromium-blink-merge.git] / testing / buildbot / gn_isolate_map.pyl
blob6e2f3b839d1f89ba1aaf9784016ff61be409f95d
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
3 # found in the LICENSE file.
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.
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
10 # they are referred to in GN or GYP specifically (the GYP target name is pretty
11 # much always the same as the Ninja target name, since GYP target names are not
12 # hierarchical).
14 # The 'type' field is used to determine what the command line for the test
15 # needs to be; valid values are:
17 # "windowed_test_launcher"
18 # : the test is a gtest-based test that uses the 'brave-new-test-launcher'
19 #   from //base/test:test_support and needs to run under Xvfb if run on
20 #   an X11-based platform (use_x11=true).                         
21 #  "console_test_launcher"
22 #  : the test is a gtest-based test that uses the 'brave-new-test-launcher'
23 #    from //base/test:test_support but does not need Xvfb.
24 #  "gpu_browser_test"
25 #  : the test is a subset of the browser_tests that will be run against
26 #    a real GPU.
27 #  "raw"
28 #  : the test is a standalone executable; it may take an optional list of
29 #    command line arguments in the 'args' field, but otherwise needs no
30 #    extra files or special handling.
31 #  "unknown"
32 #  : (the default), which indicates that we don't know what the command line
33 #    needs to be (this is a fatal error).
36   "accessibility_unittests":  {
37     "label": "//ui/accessibility:accessibility_unittests",
38     "type": "raw",
39     "args": [],
40   },
41   "angle_unittests": {
42     "label": "//gpu:angle_unittests",
43     "type": "raw",
44     "args": [],
45   },
46   "app_list_unittests": {
47     "label": "//ui/app_list:app_list_unittests",
48     "type": "windowed_test_launcher",
49   },
50   "app_shell_unittests": {
51     "label": "//extensions/shell:app_shell_unittests",
52     "type": "windowed_test_launcher",
53   },
54   "ash_unittests": {
55     "label": "//ash:ash_unittests",
56     "type": "unknown",
57   },
58   "aura_unittests": {
59     "label": "//ui/aura:aura_unittests",
60     "type": "windowed_test_launcher",
61   },
62   "base_unittests": {
63     "label": "//base:base_unittests",
64     "type": "console_test_launcher",
65   },
66   "blink_heap_unittests": {
67     "label": "//third_party/WebKit/public:blink_heap_unittests",
68     "type": "unknown",
69   },
70   "blink_platform_unittests": {
71     "label": "//third_party/WebKit/public:blink_platform_unittests",
72     "type": "unknown",
73   },
74   "browser_tests": {
75     "label": "//chrome/test:browser_tests",
76     "type": "windowed_test_launcher",
77   },
78   "cacheinvalidation_unittests": {
79     "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
80     "type": "raw",
81     "args": [
82       "--test-launcher-bot-mode",
83     ],
84   },
85   "cast_base_unittests": {
86     "label": "//cast:cast_base_unittests",
87     "type": "unknown",
88   },
89   "cast_crash_unittests": {
90     "label": "//chromecast/crash:cast_crash_unittests",
91     "type": "unknown",
92   },
93   "cast_shell_unittests": {
94     "label": "//chromecast/app:cast_shell_unittests",
95     "type": "unknown",
96   },
97   "cast_unittests": {
98     "label": "//media/cast:cast_unittests",
99     "type": "windowed_test_launcher",
100   },
101   "cc_unittests": {
102     "label": "//cc:cc_unittests",
103     "type": "windowed_test_launcher",
104   },
105   "chrome_elf_unittests": {
106     "label": "//chrome_elf:chrome_elf_unittests",
107     "type": "unknown",
108   },
109   "chromedriver_unittests": {
110     "label": "//chrome/test/chromedriver:chromedriver_unittests",
111     "type": "windowed_test_launcher",
112   },
113   "chromeos_unittests": {
114     "label": "//chromeos:chromeos_unittests",
115     "type": "unknown",
116   },
117   "components_browsertests": {
118     "label": "//components:components_browsertests",
119     "type": "windowed_test_launcher",
120   },
121   "components_unittests": {
122     "label": "//components:components_unittests",
123     "type": "windowed_test_launcher",
124   },
125   "compositor_unittests": {
126     "label": "//ui/compositor:compositor_unittests",
127     "type": "windowed_test_launcher",
128   },
129   "content_browsertests": {
130     "label": "//content/test:content_browsertests",
131     "type": "windowed_test_launcher",
132   },
133   "content_gl_tests": {
134     "label": "//content/test:content_gl_tests",
135     "type": "raw",
136     "args": [],
137   },
138   "content_unittests": {
139     "label": "//content/test:content_unittests",
140     "type": "windowed_test_launcher",
141   },
142   "courgette_unittests": {
143     "label": "//courgette:courgette_unittests",
144     "type": "unknown",
145   },
146   "crypto_unittests": {
147     "label": "//crypto:crypto_unittests",
148     "type": "console_test_launcher",
149   },
150   "dbus_unittests": {
151     "label": "//dbus:dbus_unittests",
152     "type": "unknown",
153   },
154   "device_unittests": {
155     "label": "//device:device_unittests",
156     "type": "console_test_launcher",
157   },
158   "display_unittests": {
159     "label": "//ui/display:display_unittests",
160     "type": "console_test_launcher",
161   },
162   "events_unittests": {
163     "label": "//ui/events:events_unittests",
164     "type": "windowed_test_launcher",
165   },
166   "extensions_browsertests": {
167     "label": "//extensions:extensions_browsertests",
168     "type": "windowed_test_launcher",
169   },
170   "extensions_unittests": {
171     "label": "//extensions:extensions_unittests",
172     "type": "windowed_test_launcher",
173   },
174   "gcm_unit_tests": {
175     "label": "//google_apis/gcm:gcm_unit_tests",
176     "type": "console_test_launcher",
177   },
178   "gfx_unittests": {
179     "label": "//ui/gfx:gfx_unittests",
180     "type": "raw",
181     "args": [],
182   },
183   "gles2_conform_test": {
184     "label": "//gpu/gles2_conform_support:gles2_conform_test",
185     "type": "console_test_launcher",
186   },
187   "gl_tests": {
188     "label": "//gpu:gl_tests",
189     "type": "raw",
190     "args": [],
191   },
192   "gl_unittests": {
193     "label": "//ui/gl:gl_unittests",
194     "type": "raw",
195     "args": [],
196   },
197   "gn_unittests": {
198     "label": "//tools/gn:gn_unittests",
199     "type": "raw",
200     "args": [],
201   },
202   "google_apis_unittests": {
203     "label": "//google_apis:google_apis_unittests",
204     "type": "unknown",
205   },
206   "gpu_unittests": {
207     "label": "//gpu:gpu_unittests",
208     "type": "windowed_test_launcher",
209   },
210   "html_viewer_unittests": {
211     "label": "//components/html_viewer:html_viewer_unittests",
212     "type": "unknown",
213   },
214   "installer_util_unittests": {
215     "label": "//chrome/installer/util:installer_util_unittests",
216     "type": "unknown",
217   },
218   "interactive_ui_tests": {
219     "label": "//chrome/test:interactive_ui_tests",
220     "type": "windowed_test_launcher",
221   },
222   "ipc_mojo_unittests": {
223     "label": "//ipc/mojo:ipc_mojo_unittests",
224     "type": "unknown",
225   },
226   "ipc_tests": {
227     "label": "//ipc:ipc_tests",
228     "type": "console_test_launcher",
229   },
230   "jingle_unittests": {
231     "label": "//jingle:jingle_unittests",
232     "type": "console_test_launcher",
233   },
234   "keyboard_unittests": {
235     "label": "//ui/keyboard:keyboard_unittests",
236     "type": "unknown",
237   },
238   "media_unittests": {
239     "label": "//media:media_unittests",
240     "type": "windowed_test_launcher",
241   },
242   "midi_unittests": {
243     "label": "//media:midi_unittests",
244     "type": "unknown",
245   },
246   "mojo_common_unittests": {
247     "label": "//mojo/common:mojo_common_unittests",
248     "type": "console_test_launcher",
249   },
250   "mojo_public_application_unittests": {
251     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_applicaiton_unittests",
252     "type": "unknown",
253   },
254   "mojo_public_bindings_unittests": {
255     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
256     "type": "console_test_launcher",
257   },
258   "mojo_public_environment_unittests": {
259     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
260     "type": "console_test_launcher",
261   },
262   "mojo_public_system_unittests": {
263     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
264     "type": "unknown",
265   },
266   "mojo_public_utility_unittests": {
267     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
268     "type": "unknown",
269   },
270   "mojo_runner_unittests": {
271     "label": "//mojo/runner:mojo_runner_unittests",
272     "type": "unknown",
273   },
274   "mojo_shell_unittests": {
275     "label": "//mojo/shell:mojo_shell_unittests",
276     "type": "unknown",
277   },
278   "mojo_surfaces_lib_unittests": {
279     "label": "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests",
280     "type": "unknown",
281   },
282   "mojo_system_unittests": {
283     "label": "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
284     "type": "unknown",
285   },
286   "mojo_view_manager_lib_unittests": {
287     "label": "//components/view_manager/public/cpp/tests:mojo_view_manager_lib_unittests",
288     "type": "unknown",
289   },
290   "message_center_unittests": {
291     "label": "//ui/message_center:message_center_unittests",
292     "type": "unknown",
293   },
294   "nacl_loader_unittests": {
295     "label": "//components/nacl:nacl_loader_unittests",
296     "type": "raw",
297     "args": [],
298   },
299   "net_unittests": {
300     "label": "//net:net_unittests",
301     "type": "console_test_launcher",
302   },
303   "ozone_unittests": {
304     "label": "//ui/ozone:ozone_unittests",
305     "type": "unknown",
306   },
307   "ppapi_unittests": {
308     "label": "//ppapi:ppapi_unittests",
309     "type": "unknown",
310   },
311   "printing_unittests": {
312     "label": "//printing:printing_unittests",
313     "type": "console_test_launcher",
314   },
315   "remoting_unittests": {
316     "label": "//remoting:remoting_unittests",
317     "type": "console_test_launcher",
318   },
319   "resource_provider_unittests": {
320     "label": "//components/resource_provider:resource_provider_unittests",
321     "type": "unknown",
322   },
323   "sandbox_linux_unittests": {
324     "label": "//sandbox/linux:sandbox_linux_unittests",
325     "type": "raw",
326     "args": [],
327   },
328   "sandbox_mac_unittests": {
329     "label": "//sandbox/mac:sandbox_mac_unittests",
330     "type": "unknown",
331   },
332   "sbox_integration_tests": {
333     "label": "//sandbox/win:sbox_integration_tests",
334     "type": "unknown",
335   },
336   "sbox_unittests": {
337     "label": "//sandbox/win:sbox_unittests",
338     "type": "unknown",
339   },
340   "sbox_validation_tests": {
341     "label": "//sandbox/win:sbox_validation_tests",
342     "type": "unknown",
343   },
344   "setup_unittests": {
345     "label": "//chrome/installer/setup:setup_unittests",
346     "type": "unknown",
347   },
348   "skia_unittests": {
349     "label": "//skia:skia_unittests",
350     "type": "console_test_launcher",
351   },
352   "sql_unittests": {
353     "label": "//sql:sql_unittests",
354     "type": "console_test_launcher",
355   },
356   "sync_integration_tests": {
357     "label": "//chrome/test:sync_integration_tests",
358     "type": "windowed_test_launcher",
359   },
360   "sync_unit_tests": {
361     "label": "//sync:sync_unit_tests",
362     "type": "console_test_launcher",
363   },
364   "tab_capture_end2end_tests": {
365     "label": "//chrome/test:browser_tests",
366     "type": "gpu_browser_test",
367     "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApiPixelTest.EndToEnd*",
368   },
369   "ui_base_unittests": {
370     "label": "//ui/base:ui_base_unittests",
371     "type": "windowed_test_launcher",
372   },
373   "ui_chromeos_unittests": {
374     "label": "//ui/chromeos:ui_chromeos_unittests",
375     "type": "unknown",
376   },
377   "ui_touch_selection_unittests": {
378     "label": "//ui/touch_selection:ui_touch_selection_unittests",
379     "type": "windowed_test_launcher",
380   },
381   "unit_tests": {
382     "label": "//chrome/test:unit_tests",
383     "type": "windowed_test_launcher",
384   },
385   "url_unittests": {
386     "label": "//url:url_unittests",
387     "type": "console_test_launcher",
388   },
389   "view_manager_unittests": {
390     "label": "//components/view_manager:view_manager_unittests",
391     "type": "unknown",
392   },
393   "views_unittests": {
394     "label": "//ui/views:views_unittests",
395     "type": "unknown",
396   },
397   "webkit_unit_tests": {
398     "label": "//third_party/WebKit/public:webkit_unit_tests",
399     "type": "unknown",
400   },
401   "wm_unittests": {
402     "label": "//ui/wm:wm_unittests",
403     "type": "windowed_test_launcher",
404   },
405   "wtf_unittests": {
406     "label": "//third_party/WebKit/public:wtf_unittests",
407     "type": "unknown",
408   },