blob: b50b2be292d146acc6f1c35fe9b6969a0caf8f76 [file] [log] [blame]
dpranke358c73c2015-08-25 20:43:301## Copyright 2015 The Chromium Authors. All rights reserved.
dprankea55584f12015-07-22 00:52:472# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
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.
7#
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).
13#
dprankefe0d35e2016-02-05 02:43:5914# The "label" field specifies the matching GN label for the given ninja
15# target.
16#
17# The "type" field is used to determine what the command line for the test
dprankea55584f12015-07-22 00:52:4718# needs to be; valid values are:
19#
dprankefe0d35e2016-02-05 02:43:5920# "windowed_test_launcher"
21# : the test is a gtest-based test that uses the "brave-new-test-launcher"
22# from //base/test:test_support and needs to run under Xvfb if run on
23# an X11-based platform (use_x11=true).
dprankedbdd9d82015-08-12 21:18:1824# "console_test_launcher"
dprankefe0d35e2016-02-05 02:43:5925# : the test is a gtest-based test that uses the "brave-new-test-launcher"
dprankea55584f12015-07-22 00:52:4726# from //base/test:test_support but does not need Xvfb.
dprankedbdd9d82015-08-12 21:18:1827# "gpu_browser_test"
28# : the test is a subset of the browser_tests that will be run against
29# a real GPU.
dprankea55584f12015-07-22 00:52:4730# "raw"
31# : the test is a standalone executable; it may take an optional list of
dprankefe0d35e2016-02-05 02:43:5932# command line arguments in the "args" field, but otherwise needs no
dprankea55584f12015-07-22 00:52:4733# extra files or special handling.
dprankefe0d35e2016-02-05 02:43:5934# "script"
35# : the test is a python script; the path to the script is specified in
36# the "script" field.
dprankea55584f12015-07-22 00:52:4737# "unknown"
38# : (the default), which indicates that we don't know what the command line
39# needs to be (this is a fatal error).
dprankefe0d35e2016-02-05 02:43:5940#
41# The optional "executable" field can be used to override the name
42# of the binary to run. If the field is not specified, the binary
43# name will be assumed to be the same as the ninja build target name.
44# On Windows, ".exe" will be automatically appended if need be, so
45# the executable name (and target name) should not contain an ".exe".
46#
47# The optional "args" field can be used to append extra command line
48# args onto the command line determined by the "type". If not specified,
49# it defaults to an empty list (no extra args).
50#
51# The optional "label_type" field can be used in conjunction with
52# "type" == "console_test_launcher" or "type" == "windowed_test_launcher"
53# to indicate that even though the command line
54# to use follows the test_launcher patterns, the actual GN label refers
55# to a different type of thing (usually a "group") and so MB can find
56# the generated runtime files in the right place. This is used, for
57# example, in content_site_isolation_browsertests .
58#
59# The optional "script" field is used when "type" == "script", and
60# specifies the GN path to the corresponding python file, e.g.
61# "//testing/scripts/foo.py".
dprankea55584f12015-07-22 00:52:4762
63{
64 "accessibility_unittests": {
65 "label": "//ui/accessibility:accessibility_unittests",
dpranke177c1e22015-07-22 23:07:4366 "type": "raw",
67 "args": [],
dprankea55584f12015-07-22 00:52:4768 },
jbudoricke3c4f95e2016-04-28 23:17:3869 "android_webview_test_apk": {
agrieve2e039c22016-04-27 22:57:5370 "label": "//android_webview/test:android_webview_test_apk",
71 "type": "console_test_launcher",
72 },
jbudorick73567ae2016-02-09 00:17:2573 "android_webview_unittests": {
74 "label": "//android_webview/test:android_webview_unittests",
75 "type": "console_test_launcher",
76 },
jmadill9b384b782016-03-16 00:21:3277 "angle_deqp_egl_tests": {
78 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
79 "type": "raw",
80 "args": [],
81 },
cwallez18d5b4e2016-02-05 01:18:2382 "angle_deqp_gles2_tests": {
83 "label": "//third_party/angle/src/tests:angle_deqp_gles2_tests",
84 "type": "raw",
85 "args": [],
86 },
87 "angle_deqp_gles3_tests": {
88 "label": "//third_party/angle/src/tests:angle_deqp_gles3_tests",
89 "type": "raw",
90 "args": [],
91 },
dpranke6abd8652015-08-28 03:21:1192 "angle_end2end_tests": {
dprankee35c4f72015-09-04 01:04:1293 "label": "//third_party/angle/src/tests:angle_end2end_tests",
dpranke6abd8652015-08-28 03:21:1194 "type": "raw",
95 "args": [],
96 },
dprankea55584f12015-07-22 00:52:4797 "angle_unittests": {
dprankee35c4f72015-09-04 01:04:1298 "label": "//third_party/angle/src/tests:angle_unittests",
dpranke177c1e22015-07-22 23:07:4399 "type": "raw",
100 "args": [],
dprankea55584f12015-07-22 00:52:47101 },
102 "app_list_unittests": {
103 "label": "//ui/app_list:app_list_unittests",
dprankea21b31b02015-07-24 21:42:00104 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47105 },
mfomitchevda899d82016-04-15 22:20:37106 "app_list_presenter_unittests": {
107 "label": "//ui/app_list/presenter:app_list_presenter_unittests",
mfomitchev216ff0b2016-04-06 19:45:39108 "type": "windowed_test_launcher",
109 },
dprankea55584f12015-07-22 00:52:47110 "app_shell_unittests": {
111 "label": "//extensions/shell:app_shell_unittests",
dprankea21b31b02015-07-24 21:42:00112 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47113 },
114 "ash_unittests": {
115 "label": "//ash:ash_unittests",
mswda0133e62016-02-16 20:50:02116 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47117 },
kbr39bc5e6d2015-12-31 00:01:43118 "audio_unittests": {
119 "label": "//media:audio_unittests",
120 "type": "raw",
121 "args": [],
122 },
dprankea55584f12015-07-22 00:52:47123 "aura_unittests": {
124 "label": "//ui/aura:aura_unittests",
dprankea21b31b02015-07-24 21:42:00125 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47126 },
127 "base_unittests": {
128 "label": "//base:base_unittests",
129 "type": "console_test_launcher",
130 },
charliea5daef2bb2016-01-29 00:13:25131 "battor_agent_unittests": {
132 "label": "//tools/battor_agent:battor_agent_unittests",
133 "type": "console_test_launcher",
134 },
jbudoricke3c4f95e2016-04-28 23:17:38135 "blimp_test_apk": {
agrieve2e039c22016-04-27 22:57:53136 "label": "//blimp/client:blimp_test_apk",
137 "type": "console_test_launcher",
138 },
kmarshalla9387eb2015-10-16 17:45:08139 "blimp_unittests": {
140 "label": "//blimp:blimp_unittests",
kmarshall1b78a362015-10-14 00:36:50141 "type": "console_test_launcher",
142 },
dprankea55584f12015-07-22 00:52:47143 "blink_heap_unittests": {
Dirk Pranke49802732015-12-10 01:36:41144 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests",
145 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47146 },
147 "blink_platform_unittests": {
Dirk Pranke49802732015-12-10 01:36:41148 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests",
149 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47150 },
bpastened9c91b62015-11-17 22:57:42151 "breakpad_unittests": {
152 "label": "//breakpad:breakpad_unittests",
153 "type": "console_test_launcher",
154 },
dprankea55584f12015-07-22 00:52:47155 "browser_tests": {
156 "label": "//chrome/test:browser_tests",
jam66f8afe22015-08-09 04:41:40157 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47158 },
159 "cacheinvalidation_unittests": {
160 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
161 "type": "raw",
162 "args": [
163 "--test-launcher-bot-mode",
164 ],
165 },
166 "cast_base_unittests": {
167 "label": "//cast:cast_base_unittests",
168 "type": "unknown",
169 },
170 "cast_crash_unittests": {
171 "label": "//chromecast/crash:cast_crash_unittests",
172 "type": "unknown",
173 },
174 "cast_shell_unittests": {
175 "label": "//chromecast/app:cast_shell_unittests",
176 "type": "unknown",
177 },
178 "cast_unittests": {
dprankea21b31b02015-07-24 21:42:00179 "label": "//media/cast:cast_unittests",
180 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47181 },
182 "cc_unittests": {
183 "label": "//cc:cc_unittests",
dpranke177c1e22015-07-22 23:07:43184 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47185 },
grteec2afd2016-02-09 16:56:45186 "chrome_app_unittests": {
187 "label": "//chrome/test:chrome_app_unittests",
188 "type": "console_test_launcher",
189 },
dprankea55584f12015-07-22 00:52:47190 "chrome_elf_unittests": {
191 "label": "//chrome_elf:chrome_elf_unittests",
thakise782a76f2016-02-16 15:47:35192 "type": "raw",
dprankea55584f12015-07-22 00:52:47193 },
jbudoricke3c4f95e2016-04-28 23:17:38194 "chrome_public_test_apk": {
agrieve2e039c22016-04-27 22:57:53195 "label": "//chrome/android:chrome_public_test_apk",
196 "type": "console_test_launcher",
197 },
jbudoricke3c4f95e2016-04-28 23:17:38198 "chrome_sync_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53199 "label": "//chrome/android:chrome_sync_shell_test_apk",
200 "type": "console_test_launcher",
201 },
dprankea55584f12015-07-22 00:52:47202 "chromedriver_unittests": {
203 "label": "//chrome/test/chromedriver:chromedriver_unittests",
dpranke1643d222015-07-27 22:22:08204 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47205 },
206 "chromeos_unittests": {
207 "label": "//chromeos:chromeos_unittests",
brettw6df3e8c42016-04-14 21:07:13208 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47209 },
210 "components_browsertests": {
211 "label": "//components:components_browsertests",
dpranke1643d222015-07-27 22:22:08212 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47213 },
214 "components_unittests": {
215 "label": "//components:components_unittests",
dpranke1643d222015-07-27 22:22:08216 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47217 },
218 "compositor_unittests": {
219 "label": "//ui/compositor:compositor_unittests",
dpranke177c1e22015-07-22 23:07:43220 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47221 },
222 "content_browsertests": {
223 "label": "//content/test:content_browsertests",
dpranke1643d222015-07-27 22:22:08224 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47225 },
dprankefe0d35e2016-02-05 02:43:59226 "content_site_isolation_browsertests": {
227 "label": "//content/test:content_site_isolation_browsertests",
228 "label_type": "group",
229 "type": "windowed_test_launcher",
230 "executable": "content_browsertests",
231 "args": ["--site-per-process", "--test-launcher-filter-file=../../testing/buildbot/filters/site-per-process.content_browsertests.filter"],
232 },
jbudoricke3c4f95e2016-04-28 23:17:38233 "content_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53234 "label": "//content/shell/android:content_shell_test_apk",
235 "type": "console_test_launcher",
236 },
dprankea55584f12015-07-22 00:52:47237 "content_unittests": {
238 "label": "//content/test:content_unittests",
dpranke1643d222015-07-27 22:22:08239 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47240 },
241 "courgette_unittests": {
242 "label": "//courgette:courgette_unittests",
thakis6e0c3f82016-02-11 04:33:59243 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47244 },
245 "crypto_unittests": {
246 "label": "//crypto:crypto_unittests",
dpranke1643d222015-07-27 22:22:08247 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47248 },
249 "dbus_unittests": {
250 "label": "//dbus:dbus_unittests",
251 "type": "unknown",
252 },
253 "device_unittests": {
254 "label": "//device:device_unittests",
dpranke1643d222015-07-27 22:22:08255 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47256 },
257 "display_unittests": {
258 "label": "//ui/display:display_unittests",
dpranke1643d222015-07-27 22:22:08259 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47260 },
261 "events_unittests": {
262 "label": "//ui/events:events_unittests",
dprankef497c7962015-07-31 19:46:23263 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47264 },
265 "extensions_browsertests": {
266 "label": "//extensions:extensions_browsertests",
dprankef497c7962015-07-31 19:46:23267 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47268 },
269 "extensions_unittests": {
270 "label": "//extensions:extensions_unittests",
dprankef497c7962015-07-31 19:46:23271 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47272 },
erg716b6172016-03-18 18:30:29273 "filesystem_service_unittests": {
erg4652931e2016-04-27 22:15:40274 "label": "//components/filesystem:filesystem_service_unittests",
erg716b6172016-03-18 18:30:29275 "type": "console_test_launcher",
276 },
dprankea55584f12015-07-22 00:52:47277 "gcm_unit_tests": {
278 "label": "//google_apis/gcm:gcm_unit_tests",
dprankef497c7962015-07-31 19:46:23279 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47280 },
281 "gfx_unittests": {
282 "label": "//ui/gfx:gfx_unittests",
dprankef497c7962015-07-31 19:46:23283 "type": "raw",
284 "args": [],
dprankea55584f12015-07-22 00:52:47285 },
jochen656a7c92015-12-08 00:56:45286 "gin_unittests": {
287 "label": "//gin:gin_unittests",
288 "type": "console_test_launcher",
289 },
dprankedbdd9d82015-08-12 21:18:18290 "gles2_conform_test": {
291 "label": "//gpu/gles2_conform_support:gles2_conform_test",
292 "type": "console_test_launcher",
293 },
294 "gl_tests": {
295 "label": "//gpu:gl_tests",
296 "type": "raw",
297 "args": [],
298 },
dprankea55584f12015-07-22 00:52:47299 "gl_unittests": {
300 "label": "//ui/gl:gl_unittests",
dpranke177c1e22015-07-22 23:07:43301 "type": "raw",
302 "args": [],
dprankea55584f12015-07-22 00:52:47303 },
304 "gn_unittests": {
305 "label": "//tools/gn:gn_unittests",
dpranke177c1e22015-07-22 23:07:43306 "type": "raw",
307 "args": [],
dprankea55584f12015-07-22 00:52:47308 },
309 "google_apis_unittests": {
310 "label": "//google_apis:google_apis_unittests",
dpranke358c73c2015-08-25 20:43:30311 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47312 },
313 "gpu_unittests": {
314 "label": "//gpu:gpu_unittests",
dprankef497c7962015-07-31 19:46:23315 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47316 },
perezjub8b863a02016-04-15 09:20:00317 "headless_browsertests": {
318 "label": "//headless:headless_browsertests",
319 "type": "console_test_launcher",
320 },
321 "headless_unittests": {
322 "label": "//headless:headless_unittests",
323 "type": "console_test_launcher",
324 },
dprankea55584f12015-07-22 00:52:47325 "installer_util_unittests": {
326 "label": "//chrome/installer/util:installer_util_unittests",
thakis33fc54c2016-02-13 01:51:16327 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47328 },
329 "interactive_ui_tests": {
330 "label": "//chrome/test:interactive_ui_tests",
dprankef497c7962015-07-31 19:46:23331 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47332 },
333 "ipc_mojo_unittests": {
334 "label": "//ipc/mojo:ipc_mojo_unittests",
335 "type": "unknown",
336 },
337 "ipc_tests": {
338 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43339 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47340 },
341 "jingle_unittests": {
342 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23343 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47344 },
345 "keyboard_unittests": {
346 "label": "//ui/keyboard:keyboard_unittests",
347 "type": "unknown",
348 },
ergf1f689f2016-03-22 00:51:20349 "leveldb_service_unittests": {
350 "label": "//components/leveldb:leveldb_service_unittests",
351 "type": "console_test_launcher",
352 },
dpranke5e233662016-02-13 01:14:07353 # See http://crbug.com/585151
354 #"libaddressinput_unittests": {
355 #"label": "//third_party/libaddressinput:libaddressinput_unittests",
356 #"type": "console_test_launcher",
357 #},
phoglund2357e822016-03-21 15:58:05358 # See http://crbug.com/585151
359 #"libphonenumber_unittests": {
360 #"label": "//third_party/libphonenumber:libphonenumber_unittests",
361 #"type": "console_test_launcher",
362 #},
dprankea55584f12015-07-22 00:52:47363 "media_unittests": {
364 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23365 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47366 },
hubbe2dc5a592015-09-23 23:29:31367 "media_blink_unittests": {
368 "label": "//media/blink:media_blink_unittests",
369 "type": "windowed_test_launcher",
370 },
dprankea55584f12015-07-22 00:52:47371 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30372 "label": "//media/midi:midi_unittests",
373 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47374 },
375 "mojo_common_unittests": {
376 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23377 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47378 },
yzshen1d7a11c2016-01-27 00:16:32379 "mojo_js_integration_tests": {
380 "label": "//mojo/edk/js/test:js_integration_tests",
381 "type": "console_test_launcher",
382 },
383 "mojo_js_unittests": {
384 "label": "//mojo/edk/js/test:js_unittests",
385 "type": "console_test_launcher",
386 },
dprankea55584f12015-07-22 00:52:47387 "mojo_public_application_unittests": {
rockotc637caf9b2016-02-10 09:57:08388 "label": "//mojo/edk/test:mojo_public_applicaiton_unittests",
dprankea55584f12015-07-22 00:52:47389 "type": "unknown",
390 },
391 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08392 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23393 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47394 },
dprankea55584f12015-07-22 00:52:47395 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08396 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35397 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47398 },
ben213e5432015-11-11 21:39:41399 "mojo_runner_host_unittests": {
400 "label": "//mojo/runner/host:unittests",
dprankea55584f12015-07-22 00:52:47401 "type": "unknown",
402 },
403 "mojo_shell_unittests": {
benf709a3092016-04-12 22:38:22404 "label": "//services/shell:mojo_shell_unittests",
dprankea55584f12015-07-22 00:52:47405 "type": "unknown",
406 },
407 "mojo_surfaces_lib_unittests": {
408 "label": "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests",
409 "type": "unknown",
410 },
411 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08412 "label": "//mojo/edk/system:mojo_system_unittests",
dprankea55584f12015-07-22 00:52:47413 "type": "unknown",
414 },
415 "mojo_view_manager_lib_unittests": {
416 "label": "//components/view_manager/public/cpp/tests:mojo_view_manager_lib_unittests",
417 "type": "unknown",
418 },
419 "message_center_unittests": {
420 "label": "//ui/message_center:message_center_unittests",
dpranke79ada9d2016-02-24 00:51:47421 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47422 },
sky130827232015-11-23 20:41:08423 "mash_unittests": {
424 "label": "//mash:mash_unittests",
sky97b65592015-11-02 20:08:25425 "type": "unknown",
426 },
rockot6a2b0422016-03-09 17:14:59427 "mus_ws_unittests": {
428 "label": "//components/mus/ws:mus_ws_unittests",
429 "type": "windowed_test_launcher",
430 },
dprankea55584f12015-07-22 00:52:47431 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13432 "label": "//components/nacl/loader:nacl_loader_unittests",
dprankef497c7962015-07-31 19:46:23433 "type": "raw",
434 "args": [],
dprankea55584f12015-07-22 00:52:47435 },
436 "net_unittests": {
437 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23438 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47439 },
440 "ozone_unittests": {
441 "label": "//ui/ozone:ozone_unittests",
442 "type": "unknown",
443 },
444 "ppapi_unittests": {
445 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48446 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47447 },
448 "printing_unittests": {
449 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23450 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47451 },
452 "remoting_unittests": {
453 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23454 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47455 },
456 "resource_provider_unittests": {
457 "label": "//components/resource_provider:resource_provider_unittests",
458 "type": "unknown",
459 },
460 "sandbox_linux_unittests": {
461 "label": "//sandbox/linux:sandbox_linux_unittests",
dpranke177c1e22015-07-22 23:07:43462 "type": "raw",
463 "args": [],
dprankea55584f12015-07-22 00:52:47464 },
465 "sandbox_mac_unittests": {
466 "label": "//sandbox/mac:sandbox_mac_unittests",
467 "type": "unknown",
468 },
469 "sbox_integration_tests": {
470 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16471 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47472 },
473 "sbox_unittests": {
474 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16475 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47476 },
477 "sbox_validation_tests": {
478 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16479 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47480 },
481 "setup_unittests": {
482 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59483 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47484 },
485 "skia_unittests": {
486 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43487 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47488 },
489 "sql_unittests": {
490 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43491 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47492 },
493 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23494 "label": "//chrome/test:sync_integration_tests",
495 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47496 },
497 "sync_unit_tests": {
498 "label": "//sync:sync_unit_tests",
dprankef497c7962015-07-31 19:46:23499 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47500 },
dprankedbdd9d82015-08-12 21:18:18501 "tab_capture_end2end_tests": {
502 "label": "//chrome/test:browser_tests",
503 "type": "gpu_browser_test",
504 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApiPixelTest.EndToEnd*",
505 },
dpranke6abd8652015-08-28 03:21:11506 "telemetry_gpu_test": {
507 "label": "//chrome/test:telemetry_gpu_test",
508 "type": "script",
kbrd4542282015-12-11 02:29:41509 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
510 "args": [
511 "../../content/test/gpu/run_gpu_test.py",
512 ],
dpranke6abd8652015-08-28 03:21:11513 },
nednguyenfbee71a62015-10-01 12:41:13514 "telemetry_gpu_unittests": {
515 "label": "//chrome/test:telemetry_gpu_unittests",
516 "type": "script",
517 "script": "//testing/scripts/run_telemetry_as_googletest.py",
518 "args": [
519 "../../content/test/gpu/run_unittests.py",
520 "-v",
521 ],
522 },
nednguyen9ce21622015-10-08 12:30:48523 "telemetry_perf_unittests": {
524 "label": "//chrome/test:telemetry_perf_unittests",
525 "type": "script",
526 "script": "//testing/scripts/run_telemetry_as_googletest.py",
527 "args": [
528 "--xvfb",
529 "../../tools/perf/run_tests",
530 "-v",
531 ],
532 },
nednguyen8365ba52015-11-18 15:52:46533 "telemetry_unittests": {
534 "label": "//chrome/test:telemetry_unittests",
535 "type": "script",
536 "script": "//testing/scripts/run_telemetry_as_googletest.py",
537 "args": [
538 "--xvfb",
nednguyena91919182016-01-13 18:31:53539 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46540 "-v",
541 "--chrome-root",
542 "../../",
543 ],
544 },
pkotwicz280f66602015-11-04 02:51:55545 "ui_android_unittests": {
546 "label": "//ui/android:ui_android_unittests",
547 "type": "console_test_launcher",
548 },
dprankea55584f12015-07-22 00:52:47549 "ui_base_unittests": {
550 "label": "//ui/base:ui_base_unittests",
551 "type": "windowed_test_launcher",
552 },
553 "ui_chromeos_unittests": {
554 "label": "//ui/chromeos:ui_chromeos_unittests",
555 "type": "unknown",
556 },
yoshiki8e2ddbb2016-03-10 07:11:22557 "ui_arc_unittests": {
558 "label": "//ui/arc:ui_arc_unittests",
559 "type": "raw",
560 "args": [],
561 },
dprankea55584f12015-07-22 00:52:47562 "ui_touch_selection_unittests": {
563 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:00564 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47565 },
566 "unit_tests": {
567 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:23568 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47569 },
570 "url_unittests": {
571 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:43572 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47573 },
msw2e3ff862016-02-26 02:20:09574 "views_mus_unittests": {
575 "label": "//ui/views/mus:views_mus_unittests",
576 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47577 },
578 "views_unittests": {
579 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:10580 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47581 },
582 "webkit_unit_tests": {
Dirk Pranke1b64ac442015-12-10 01:47:02583 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
584 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47585 },
586 "wm_unittests": {
587 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:00588 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47589 },
590 "wtf_unittests": {
Dirk Pranke1b64ac442015-12-10 01:47:02591 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
592 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47593 },
594}