Roll src/third_party/WebKit f298044:aa8346d (svn 202628:202629)
[chromium-blink-merge.git] / testing / buildbot / gn_isolate_map.pyl
blob1ca5a1b86565432ed235045f2331dc4aeae5bc0f
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_end2end_tests": {
42     "label": "//third_party/angle/src/tests:angle_end2end_tests",
43     "type": "raw",
44     "args": [],
45   },
46   "angle_unittests": {
47     "label": "//third_party/angle/src/tests:angle_unittests",
48     "type": "raw",
49     "args": [],
50   },
51   "app_list_unittests": {
52     "label": "//ui/app_list:app_list_unittests",
53     "type": "windowed_test_launcher",
54   },
55   "app_shell_unittests": {
56     "label": "//extensions/shell:app_shell_unittests",
57     "type": "windowed_test_launcher",
58   },
59   "ash_unittests": {
60     "label": "//ash:ash_unittests",
61     "type": "unknown",
62   },
63   "aura_unittests": {
64     "label": "//ui/aura:aura_unittests",
65     "type": "windowed_test_launcher",
66   },
67   "base_unittests": {
68     "label": "//base:base_unittests",
69     "type": "console_test_launcher",
70   },
71   "blink_heap_unittests": {
72     "label": "//third_party/WebKit/public:blink_heap_unittests",
73     "type": "unknown",
74   },
75   "blink_platform_unittests": {
76     "label": "//third_party/WebKit/public:blink_platform_unittests",
77     "type": "unknown",
78   },
79   "browser_tests": {
80     "label": "//chrome/test:browser_tests",
81     "type": "windowed_test_launcher",
82   },
83   "cacheinvalidation_unittests": {
84     "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
85     "type": "raw",
86     "args": [
87       "--test-launcher-bot-mode",
88     ],
89   },
90   "cast_base_unittests": {
91     "label": "//cast:cast_base_unittests",
92     "type": "unknown",
93   },
94   "cast_crash_unittests": {
95     "label": "//chromecast/crash:cast_crash_unittests",
96     "type": "unknown",
97   },
98   "cast_shell_unittests": {
99     "label": "//chromecast/app:cast_shell_unittests",
100     "type": "unknown",
101   },
102   "cast_unittests": {
103     "label": "//media/cast:cast_unittests",
104     "type": "windowed_test_launcher",
105   },
106   "cc_unittests": {
107     "label": "//cc:cc_unittests",
108     "type": "windowed_test_launcher",
109   },
110   "chrome_elf_unittests": {
111     "label": "//chrome_elf:chrome_elf_unittests",
112     "type": "unknown",
113   },
114   "chromedriver_unittests": {
115     "label": "//chrome/test/chromedriver:chromedriver_unittests",
116     "type": "windowed_test_launcher",
117   },
118   "chromeos_unittests": {
119     "label": "//chromeos:chromeos_unittests",
120     "type": "unknown",
121   },
122   "components_browsertests": {
123     "label": "//components:components_browsertests",
124     "type": "windowed_test_launcher",
125   },
126   "components_unittests": {
127     "label": "//components:components_unittests",
128     "type": "windowed_test_launcher",
129   },
130   "compositor_unittests": {
131     "label": "//ui/compositor:compositor_unittests",
132     "type": "windowed_test_launcher",
133   },
134   "content_browsertests": {
135     "label": "//content/test:content_browsertests",
136     "type": "windowed_test_launcher",
137   },
138   "content_gl_tests": {
139     "label": "//content/test:content_gl_tests",
140     "type": "raw",
141     "args": [],
142   },
143   "content_unittests": {
144     "label": "//content/test:content_unittests",
145     "type": "windowed_test_launcher",
146   },
147   "courgette_unittests": {
148     "label": "//courgette:courgette_unittests",
149     "type": "unknown",
150   },
151   "crypto_unittests": {
152     "label": "//crypto:crypto_unittests",
153     "type": "console_test_launcher",
154   },
155   "dbus_unittests": {
156     "label": "//dbus:dbus_unittests",
157     "type": "unknown",
158   },
159   "device_unittests": {
160     "label": "//device:device_unittests",
161     "type": "console_test_launcher",
162   },
163   "display_unittests": {
164     "label": "//ui/display:display_unittests",
165     "type": "console_test_launcher",
166   },
167   "events_unittests": {
168     "label": "//ui/events:events_unittests",
169     "type": "windowed_test_launcher",
170   },
171   "extensions_browsertests": {
172     "label": "//extensions:extensions_browsertests",
173     "type": "windowed_test_launcher",
174   },
175   "extensions_unittests": {
176     "label": "//extensions:extensions_unittests",
177     "type": "windowed_test_launcher",
178   },
179   "gcm_unit_tests": {
180     "label": "//google_apis/gcm:gcm_unit_tests",
181     "type": "console_test_launcher",
182   },
183   "gfx_unittests": {
184     "label": "//ui/gfx:gfx_unittests",
185     "type": "raw",
186     "args": [],
187   },
188   "gles2_conform_test": {
189     "label": "//gpu/gles2_conform_support:gles2_conform_test",
190     "type": "console_test_launcher",
191   },
192   "gl_tests": {
193     "label": "//gpu:gl_tests",
194     "type": "raw",
195     "args": [],
196   },
197   "gl_unittests": {
198     "label": "//ui/gl:gl_unittests",
199     "type": "raw",
200     "args": [],
201   },
202   "gn_unittests": {
203     "label": "//tools/gn:gn_unittests",
204     "type": "raw",
205     "args": [],
206   },
207   "google_apis_unittests": {
208     "label": "//google_apis:google_apis_unittests",
209     "type": "console_test_launcher",
210   },
211   "gpu_unittests": {
212     "label": "//gpu:gpu_unittests",
213     "type": "windowed_test_launcher",
214   },
215   "html_viewer_unittests": {
216     "label": "//components/html_viewer:html_viewer_unittests",
217     "type": "unknown",
218   },
219   "installer_util_unittests": {
220     "label": "//chrome/installer/util:installer_util_unittests",
221     "type": "unknown",
222   },
223   "interactive_ui_tests": {
224     "label": "//chrome/test:interactive_ui_tests",
225     "type": "windowed_test_launcher",
226   },
227   "ipc_mojo_unittests": {
228     "label": "//ipc/mojo:ipc_mojo_unittests",
229     "type": "unknown",
230   },
231   "ipc_tests": {
232     "label": "//ipc:ipc_tests",
233     "type": "console_test_launcher",
234   },
235   "jingle_unittests": {
236     "label": "//jingle:jingle_unittests",
237     "type": "console_test_launcher",
238   },
239   "keyboard_unittests": {
240     "label": "//ui/keyboard:keyboard_unittests",
241     "type": "unknown",
242   },
243   "media_unittests": {
244     "label": "//media:media_unittests",
245     "type": "windowed_test_launcher",
246   },
247   "midi_unittests": {
248     "label": "//media/midi:midi_unittests",
249     "type": "windowed_test_launcher",
250   },
251   "mojo_common_unittests": {
252     "label": "//mojo/common:mojo_common_unittests",
253     "type": "console_test_launcher",
254   },
255   "mojo_public_application_unittests": {
256     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_applicaiton_unittests",
257     "type": "unknown",
258   },
259   "mojo_public_bindings_unittests": {
260     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
261     "type": "console_test_launcher",
262   },
263   "mojo_public_environment_unittests": {
264     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
265     "type": "console_test_launcher",
266   },
267   "mojo_public_system_unittests": {
268     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
269     "type": "console_test_launcher",
270   },
271   "mojo_public_utility_unittests": {
272     "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
273     "type": "console_test_launcher",
274   },
275   "mojo_runner_unittests": {
276     "label": "//mojo/runner:mojo_runner_unittests",
277     "type": "unknown",
278   },
279   "mojo_shell_unittests": {
280     "label": "//mojo/shell:mojo_shell_unittests",
281     "type": "unknown",
282   },
283   "mojo_surfaces_lib_unittests": {
284     "label": "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests",
285     "type": "unknown",
286   },
287   "mojo_system_unittests": {
288     "label": "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
289     "type": "unknown",
290   },
291   "mojo_view_manager_lib_unittests": {
292     "label": "//components/view_manager/public/cpp/tests:mojo_view_manager_lib_unittests",
293     "type": "unknown",
294   },
295   "message_center_unittests": {
296     "label": "//ui/message_center:message_center_unittests",
297     "type": "unknown",
298   },
299   "nacl_loader_unittests": {
300     "label": "//components/nacl:nacl_loader_unittests",
301     "type": "raw",
302     "args": [],
303   },
304   "net_unittests": {
305     "label": "//net:net_unittests",
306     "type": "console_test_launcher",
307   },
308   "ozone_unittests": {
309     "label": "//ui/ozone:ozone_unittests",
310     "type": "unknown",
311   },
312   "ppapi_unittests": {
313     "label": "//ppapi:ppapi_unittests",
314     "type": "unknown",
315   },
316   "printing_unittests": {
317     "label": "//printing:printing_unittests",
318     "type": "console_test_launcher",
319   },
320   "remoting_unittests": {
321     "label": "//remoting:remoting_unittests",
322     "type": "console_test_launcher",
323   },
324   "resource_provider_unittests": {
325     "label": "//components/resource_provider:resource_provider_unittests",
326     "type": "unknown",
327   },
328   "sandbox_linux_unittests": {
329     "label": "//sandbox/linux:sandbox_linux_unittests",
330     "type": "raw",
331     "args": [],
332   },
333   "sandbox_mac_unittests": {
334     "label": "//sandbox/mac:sandbox_mac_unittests",
335     "type": "unknown",
336   },
337   "sbox_integration_tests": {
338     "label": "//sandbox/win:sbox_integration_tests",
339     "type": "unknown",
340   },
341   "sbox_unittests": {
342     "label": "//sandbox/win:sbox_unittests",
343     "type": "unknown",
344   },
345   "sbox_validation_tests": {
346     "label": "//sandbox/win:sbox_validation_tests",
347     "type": "unknown",
348   },
349   "setup_unittests": {
350     "label": "//chrome/installer/setup:setup_unittests",
351     "type": "unknown",
352   },
353   "skia_unittests": {
354     "label": "//skia:skia_unittests",
355     "type": "console_test_launcher",
356   },
357   "sql_unittests": {
358     "label": "//sql:sql_unittests",
359     "type": "console_test_launcher",
360   },
361   "sync_integration_tests": {
362     "label": "//chrome/test:sync_integration_tests",
363     "type": "windowed_test_launcher",
364   },
365   "sync_unit_tests": {
366     "label": "//sync:sync_unit_tests",
367     "type": "console_test_launcher",
368   },
369   "tab_capture_end2end_tests": {
370     "label": "//chrome/test:browser_tests",
371     "type": "gpu_browser_test",
372     "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApiPixelTest.EndToEnd*",
373   },
374   "telemetry_gpu_test": {
375     "label": "//chrome/test:telemetry_gpu_test",
376     "type": "script",
377     "script": "//content/test/gpu/run_gpu_test.py",
378   },
379   "ui_base_unittests": {
380     "label": "//ui/base:ui_base_unittests",
381     "type": "windowed_test_launcher",
382   },
383   "ui_chromeos_unittests": {
384     "label": "//ui/chromeos:ui_chromeos_unittests",
385     "type": "unknown",
386   },
387   "ui_touch_selection_unittests": {
388     "label": "//ui/touch_selection:ui_touch_selection_unittests",
389     "type": "windowed_test_launcher",
390   },
391   "unit_tests": {
392     "label": "//chrome/test:unit_tests",
393     "type": "windowed_test_launcher",
394   },
395   "url_unittests": {
396     "label": "//url:url_unittests",
397     "type": "console_test_launcher",
398   },
399   "view_manager_unittests": {
400     "label": "//components/view_manager:view_manager_unittests",
401     "type": "unknown",
402   },
403   "views_unittests": {
404     "label": "//ui/views:views_unittests",
405     "type": "unknown",
406   },
407   "webkit_unit_tests": {
408     "label": "//third_party/WebKit/public:webkit_unit_tests",
409     "type": "unknown",
410   },
411   "wm_unittests": {
412     "label": "//ui/wm:wm_unittests",
413     "type": "windowed_test_launcher",
414   },
415   "wtf_unittests": {
416     "label": "//third_party/WebKit/public:wtf_unittests",
417     "type": "unknown",
418   },