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