blob: 608f5654a1666444d0708eae708a9558b9776308 [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
agable643c4752017-01-13 21:45:115# This is a .pyl, or "Python Literal", file. You can treat it just like a
6# .json file, with the following exceptions:
7# * all keys must be quoted (use single quotes, please);
8# * comments are allowed, using '#' syntax; and
9# * trailing commas are allowed.
10
dprankea55584f12015-07-22 00:52:4711# gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and
12# test type classifications for the tests that are run on the bots.
13#
14# This mapping is used by MB so that we can uniformly refer to test binaries
15# by their Ninja target names in the recipes and not need to worry about how
16# they are referred to in GN or GYP specifically (the GYP target name is pretty
17# much always the same as the Ninja target name, since GYP target names are not
18# hierarchical).
19#
dprankefe0d35e2016-02-05 02:43:5920# The "label" field specifies the matching GN label for the given ninja
21# target.
22#
23# The "type" field is used to determine what the command line for the test
dprankea55584f12015-07-22 00:52:4724# needs to be; valid values are:
25#
dprankefe0d35e2016-02-05 02:43:5926# "windowed_test_launcher"
27# : the test is a gtest-based test that uses the "brave-new-test-launcher"
28# from //base/test:test_support and needs to run under Xvfb if run on
kylechar39705682017-01-19 14:37:2329# some platforms (eg. Linux Desktop, X11 CrOS and Ozone CrOS).
dprankedbdd9d82015-08-12 21:18:1830# "console_test_launcher"
dprankefe0d35e2016-02-05 02:43:5931# : the test is a gtest-based test that uses the "brave-new-test-launcher"
dprankea55584f12015-07-22 00:52:4732# from //base/test:test_support but does not need Xvfb.
dprankedbdd9d82015-08-12 21:18:1833# "gpu_browser_test"
34# : the test is a subset of the browser_tests that will be run against
35# a real GPU.
dprankecb4a2e242016-09-19 01:13:1436# "additional_compile_target"
37# : this isn't actually a test, but we still need a mapping from the
38# ninja target to the GN label in order to analyze it.
39# "junit_test"
40# : this is a JUnit test.
dprankea55584f12015-07-22 00:52:4741# "raw"
42# : the test is a standalone executable; it may take an optional list of
dprankefe0d35e2016-02-05 02:43:5943# command line arguments in the "args" field, but otherwise needs no
dprankea55584f12015-07-22 00:52:4744# extra files or special handling.
dprankefe0d35e2016-02-05 02:43:5945# "script"
46# : the test is a python script; the path to the script is specified in
47# the "script" field.
dprankea55584f12015-07-22 00:52:4748# "unknown"
49# : (the default), which indicates that we don't know what the command line
50# needs to be (this is a fatal error).
dprankefe0d35e2016-02-05 02:43:5951#
52# The optional "executable" field can be used to override the name
53# of the binary to run. If the field is not specified, the binary
54# name will be assumed to be the same as the ninja build target name.
55# On Windows, ".exe" will be automatically appended if need be, so
56# the executable name (and target name) should not contain an ".exe".
57#
58# The optional "args" field can be used to append extra command line
59# args onto the command line determined by the "type". If not specified,
60# it defaults to an empty list (no extra args).
61#
62# The optional "label_type" field can be used in conjunction with
63# "type" == "console_test_launcher" or "type" == "windowed_test_launcher"
64# to indicate that even though the command line
65# to use follows the test_launcher patterns, the actual GN label refers
66# to a different type of thing (usually a "group") and so MB can find
67# the generated runtime files in the right place. This is used, for
68# example, in content_site_isolation_browsertests .
69#
70# The optional "script" field is used when "type" == "script", and
71# specifies the GN path to the corresponding python file, e.g.
72# "//testing/scripts/foo.py".
dprankea55584f12015-07-22 00:52:4773
74{
dprankecb4a2e242016-09-19 01:13:1475 "All": {
76 "label": "//:All",
77 "type": "additional_compile_target",
78 },
79 "All_syzygy": {
80 "label": "//:All_syzygy",
81 "type": "additional_compile_target",
82 },
dprankea55584f12015-07-22 00:52:4783 "accessibility_unittests": {
84 "label": "//ui/accessibility:accessibility_unittests",
dpranke177c1e22015-07-22 23:07:4385 "type": "raw",
86 "args": [],
dprankea55584f12015-07-22 00:52:4787 },
jbudoricke3c4f95e2016-04-28 23:17:3888 "android_webview_test_apk": {
agrieve2e039c22016-04-27 22:57:5389 "label": "//android_webview/test:android_webview_test_apk",
90 "type": "console_test_launcher",
91 },
jbudorick73567ae2016-02-09 00:17:2592 "android_webview_unittests": {
93 "label": "//android_webview/test:android_webview_unittests",
94 "type": "console_test_launcher",
95 },
jmadill9b384b782016-03-16 00:21:3296 "angle_deqp_egl_tests": {
97 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
98 "type": "raw",
99 "args": [],
100 },
cwallez18d5b4e2016-02-05 01:18:23101 "angle_deqp_gles2_tests": {
102 "label": "//third_party/angle/src/tests:angle_deqp_gles2_tests",
103 "type": "raw",
104 "args": [],
105 },
106 "angle_deqp_gles3_tests": {
107 "label": "//third_party/angle/src/tests:angle_deqp_gles3_tests",
108 "type": "raw",
109 "args": [],
110 },
geofflang366f3af12016-12-01 18:08:11111 "angle_deqp_gles31_tests": {
112 "label": "//third_party/angle/src/tests:angle_deqp_gles31_tests",
113 "type": "raw",
114 "args": [],
115 },
dpranke6abd8652015-08-28 03:21:11116 "angle_end2end_tests": {
dprankee35c4f72015-09-04 01:04:12117 "label": "//third_party/angle/src/tests:angle_end2end_tests",
dpranke6abd8652015-08-28 03:21:11118 "type": "raw",
119 "args": [],
120 },
dprankea55584f12015-07-22 00:52:47121 "angle_unittests": {
dprankee35c4f72015-09-04 01:04:12122 "label": "//third_party/angle/src/tests:angle_unittests",
dpranke177c1e22015-07-22 23:07:43123 "type": "raw",
124 "args": [],
dprankea55584f12015-07-22 00:52:47125 },
126 "app_list_unittests": {
127 "label": "//ui/app_list:app_list_unittests",
dprankea21b31b02015-07-24 21:42:00128 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47129 },
mfomitchevda899d82016-04-15 22:20:37130 "app_list_presenter_unittests": {
131 "label": "//ui/app_list/presenter:app_list_presenter_unittests",
mfomitchev216ff0b2016-04-06 19:45:39132 "type": "windowed_test_launcher",
133 },
dprankea55584f12015-07-22 00:52:47134 "app_shell_unittests": {
135 "label": "//extensions/shell:app_shell_unittests",
dprankea21b31b02015-07-24 21:42:00136 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47137 },
skycf094f672016-09-01 19:40:12138 "ash_content_unittests": {
139 "label": "//ash:ash_content_unittests",
140 "type": "windowed_test_launcher",
141 },
dprankea55584f12015-07-22 00:52:47142 "ash_unittests": {
143 "label": "//ash:ash_unittests",
mswda0133e62016-02-16 20:50:02144 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47145 },
kbr39bc5e6d2015-12-31 00:01:43146 "audio_unittests": {
147 "label": "//media:audio_unittests",
148 "type": "raw",
149 "args": [],
150 },
dprankecb4a2e242016-09-19 01:13:14151 "aura_builder": {
152 "label": "//:aura_builder",
153 "type": "additional_compile_target",
154 },
dprankea55584f12015-07-22 00:52:47155 "aura_unittests": {
156 "label": "//ui/aura:aura_unittests",
dprankea21b31b02015-07-24 21:42:00157 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47158 },
dprankecb4a2e242016-09-19 01:13:14159 "base_junit_tests": {
160 "label": "//base:base_junit_tests",
161 "type": "junit_test",
162 },
dprankea55584f12015-07-22 00:52:47163 "base_unittests": {
164 "label": "//base:base_unittests",
165 "type": "console_test_launcher",
166 },
charliea5daef2bb2016-01-29 00:13:25167 "battor_agent_unittests": {
168 "label": "//tools/battor_agent:battor_agent_unittests",
169 "type": "console_test_launcher",
170 },
dprankea55584f12015-07-22 00:52:47171 "blink_heap_unittests": {
brettw4a6700a2016-09-01 01:24:01172 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
Dirk Pranke49802732015-12-10 01:36:41173 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47174 },
175 "blink_platform_unittests": {
Dirk Pranke49802732015-12-10 01:36:41176 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests",
177 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47178 },
dprankecb4a2e242016-09-19 01:13:14179 "blink_tests": {
180 "label": "//:blink_tests",
181 "type": "additional_compile_target",
182 },
bpastened9c91b62015-11-17 22:57:42183 "breakpad_unittests": {
184 "label": "//breakpad:breakpad_unittests",
185 "type": "console_test_launcher",
186 },
dprankea55584f12015-07-22 00:52:47187 "browser_tests": {
188 "label": "//chrome/test:browser_tests",
jam66f8afe22015-08-09 04:41:40189 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47190 },
191 "cacheinvalidation_unittests": {
192 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
193 "type": "raw",
194 "args": [
195 "--test-launcher-bot-mode",
196 ],
197 },
mcasasd2f53ea2016-06-24 19:24:27198 "capture_unittests": {
199 "label": "//media/capture:capture_unittests",
200 "type": "windowed_test_launcher",
201 },
kmackay421e3482016-05-16 18:05:01202 "cast_alsa_cma_backend_unittests": {
203 "label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests",
maruel44522882016-08-04 17:59:11204 "type": "console_test_launcher",
kmackay421e3482016-05-16 18:05:01205 },
dprankea55584f12015-07-22 00:52:47206 "cast_base_unittests": {
dprankecb4a2e242016-09-19 01:13:14207 "label": "//chromecast/base:cast_base_unittests",
maruel44522882016-08-04 17:59:11208 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47209 },
210 "cast_crash_unittests": {
211 "label": "//chromecast/crash:cast_crash_unittests",
maruel44522882016-08-04 17:59:11212 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47213 },
dprankecb4a2e242016-09-19 01:13:14214 "cast_media_unittests": {
215 "label": "//chromecast/media:cast_media_unittests",
216 "type": "console_test_launcher",
217 },
218 "cast_shell": {
219 "label": "//chromecast:cast_shell",
220 "type": "additional_compile_target",
221 },
222 "cast_shell_apk": {
223 "label": "//chromecast:cast_shell_apk",
224 "type": "additional_compile_target",
225 },
alokpe3bd5ed2016-11-16 15:57:10226 "cast_shell_browsertests": {
227 "label": "//chromecast:cast_shell_browsertests",
dprankecb4a2e242016-09-19 01:13:14228 "type": "console_test_launcher",
229 },
alokpe3bd5ed2016-11-16 15:57:10230 "cast_shell_unittests": {
231 "label": "//chromecast:cast_shell_unittests",
dpranke9f25f762016-11-15 23:40:36232 "type": "console_test_launcher",
233 },
dprankea55584f12015-07-22 00:52:47234 "cast_unittests": {
dprankea21b31b02015-07-24 21:42:00235 "label": "//media/cast:cast_unittests",
236 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47237 },
238 "cc_unittests": {
239 "label": "//cc:cc_unittests",
dpranke177c1e22015-07-22 23:07:43240 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47241 },
dprankecb4a2e242016-09-19 01:13:14242 "chrome": {
243 "label": "//chrome:chrome",
244 "type": "additional_compile_target",
245 },
grteec2afd2016-02-09 16:56:45246 "chrome_app_unittests": {
247 "label": "//chrome/test:chrome_app_unittests",
248 "type": "console_test_launcher",
249 },
dprankea55584f12015-07-22 00:52:47250 "chrome_elf_unittests": {
251 "label": "//chrome_elf:chrome_elf_unittests",
thakise782a76f2016-02-16 15:47:35252 "type": "raw",
dprankea55584f12015-07-22 00:52:47253 },
dprankecb4a2e242016-09-19 01:13:14254 "chrome_junit_tests": {
255 "label": "//chrome/android:chrome_junit_tests",
256 "type": "junit_test",
257 },
258 "chrome_official_builder": {
259 "label": "//:chrome_official_builder",
260 "type": "additional_compile_target",
261 },
262 "chrome_official_builder_no_unittests": {
263 "label": "//:chrome_official_builder_no_unittests",
264 "type": "additional_compile_target",
265 },
266 "chrome_public_apk": {
267 "label": "//chrome/android:chrome_public_apk",
268 "type": "additional_compile_target",
269 },
jbudoricke3c4f95e2016-04-28 23:17:38270 "chrome_public_test_apk": {
agrieve2e039c22016-04-27 22:57:53271 "label": "//chrome/android:chrome_public_test_apk",
272 "type": "console_test_launcher",
273 },
jbudoricke3c4f95e2016-04-28 23:17:38274 "chrome_sync_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53275 "label": "//chrome/android:chrome_sync_shell_test_apk",
276 "type": "console_test_launcher",
277 },
dprankea55584f12015-07-22 00:52:47278 "chromedriver_unittests": {
279 "label": "//chrome/test/chromedriver:chromedriver_unittests",
dpranke1643d222015-07-27 22:22:08280 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47281 },
282 "chromeos_unittests": {
283 "label": "//chromeos:chromeos_unittests",
brettw6df3e8c42016-04-14 21:07:13284 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47285 },
maruel44522882016-08-04 17:59:11286 "chromevox_tests": {
287 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests",
288 "type": "windowed_test_launcher",
289 },
dprankecb4a2e242016-09-19 01:13:14290 "chromium_builder_asan": {
291 "label": "//:chromium_builder_asan",
292 "type": "additional_compile_target",
293 },
dprankecb4a2e242016-09-19 01:13:14294 "chromium_builder_perf": {
295 "label": "//:chromium_builder_perf",
296 "type": "additional_compile_target",
297 },
298 "chromium_builder_tests": {
299 "label": "//:chromium_builder_tests",
300 "type": "additional_compile_target",
301 },
302 "chromium_swarm_tests": {
303 "label": "//:chromium_swarm_tests",
304 "type": "additional_compile_target",
305 },
306 "chromiumos_preflight": {
307 "label": "//:chromiumos_preflight",
308 "type": "additional_compile_target",
309 },
dprankea55584f12015-07-22 00:52:47310 "components_browsertests": {
311 "label": "//components:components_browsertests",
dpranke1643d222015-07-27 22:22:08312 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47313 },
dprankecb4a2e242016-09-19 01:13:14314 "components_invalidation_impl_junit_tests": {
315 "label": "//components/invalidation/impl:components_invalidation_impl_junit_tests",
316 "type": "junit_test",
317 },
318 "components_policy_junit_tests": {
319 "label": "//components/policy/android:components_policy_junit_tests",
320 "type": "junit_test",
321 },
dprankea55584f12015-07-22 00:52:47322 "components_unittests": {
323 "label": "//components:components_unittests",
dpranke1643d222015-07-27 22:22:08324 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47325 },
aberent1b0987f2017-01-25 09:25:49326 "components_variations_junit_tests": {
327 "label": "//components/variations/android:components_variations_junit_tests",
328 "type": "junit_test",
329 },
dprankecb4a2e242016-09-19 01:13:14330 "components_web_restrictions_junit_tests": {
331 "label": "//components/web_restrictions:components_web_restrictions_junit_tests",
332 "type": "junit_test",
333 },
dprankea55584f12015-07-22 00:52:47334 "compositor_unittests": {
335 "label": "//ui/compositor:compositor_unittests",
dpranke177c1e22015-07-22 23:07:43336 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47337 },
338 "content_browsertests": {
339 "label": "//content/test:content_browsertests",
dpranke1643d222015-07-27 22:22:08340 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47341 },
dprankecb4a2e242016-09-19 01:13:14342 "content_junit_tests": {
343 "label": "//content/public/android:content_junit_tests",
344 "type": "junit_test",
345 },
jochen0426747e2017-02-09 17:01:19346 "content_shell_crash_test": {
347 "label": "//content/shell:content_shell_crash_test",
348 "type": "script",
349 "script": "//testing/scripts/content_shell_crash_test.py",
350 },
jbudoricke3c4f95e2016-04-28 23:17:38351 "content_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53352 "label": "//content/shell/android:content_shell_test_apk",
353 "type": "console_test_launcher",
354 },
dprankea55584f12015-07-22 00:52:47355 "content_unittests": {
356 "label": "//content/test:content_unittests",
dpranke1643d222015-07-27 22:22:08357 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47358 },
359 "courgette_unittests": {
360 "label": "//courgette:courgette_unittests",
thakis6e0c3f82016-02-11 04:33:59361 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47362 },
dprankecb4a2e242016-09-19 01:13:14363 "cronet_package": {
364 "label": "//components/cronet/android:cronet_package",
365 "type": "additional_compile_target",
366 },
gcasto1821cea42016-10-05 17:50:45367 "cronet_test": {
gcasto25c8da8e2016-10-26 23:42:40368 "label": "//components/cronet/ios/test:cronet_test",
gcasto1821cea42016-10-05 17:50:45369 "type": "raw",
370 },
dprankecb4a2e242016-09-19 01:13:14371 "cronet_test_instrumentation_apk": {
372 "label": "//components/cronet/android:cronet_test_instrumentation_apk",
373 "type": "additional_compile_target",
374 },
dprankea55584f12015-07-22 00:52:47375 "crypto_unittests": {
376 "label": "//crypto:crypto_unittests",
dpranke1643d222015-07-27 22:22:08377 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47378 },
379 "dbus_unittests": {
380 "label": "//dbus:dbus_unittests",
maruel44522882016-08-04 17:59:11381 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47382 },
383 "device_unittests": {
384 "label": "//device:device_unittests",
dpranke1643d222015-07-27 22:22:08385 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47386 },
chenwilliam2ee4d24c92016-11-21 20:41:44387 "devtools_closure_compile": {
388 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile",
389 "type": "script",
chenwilliam56a90382016-12-09 02:16:28390 "script": "//testing/scripts/run_devtools_check.py",
chenwilliam2ee4d24c92016-11-21 20:41:44391 "args": [
392 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py",
393 ],
394 },
chenwilliam56a90382016-12-09 02:16:28395 "devtools_eslint": {
396 "label": "//third_party/WebKit/Source/devtools:devtools_eslint",
397 "type": "script",
398 "script": "//testing/scripts/run_devtools_check.py",
399 "args": [
400 "../../third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py",
401 ],
402 },
dprankea55584f12015-07-22 00:52:47403 "display_unittests": {
404 "label": "//ui/display:display_unittests",
dpranke1643d222015-07-27 22:22:08405 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47406 },
kylechar80f206e2016-09-06 17:50:26407 "display_service_unittests": {
408 "label": "//services/ui/display:display_service_unittests",
409 "type": "console_test_launcher",
410 },
dprankea55584f12015-07-22 00:52:47411 "events_unittests": {
412 "label": "//ui/events:events_unittests",
dprankef497c7962015-07-31 19:46:23413 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47414 },
oshima2a44e112016-06-23 17:59:18415 "exo_unittests": {
416 "label": "//components/exo:exo_unittests",
417 "type": "windowed_test_launcher",
418 },
dprankea55584f12015-07-22 00:52:47419 "extensions_browsertests": {
420 "label": "//extensions:extensions_browsertests",
dprankef497c7962015-07-31 19:46:23421 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47422 },
423 "extensions_unittests": {
424 "label": "//extensions:extensions_unittests",
dprankef497c7962015-07-31 19:46:23425 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47426 },
erg716b6172016-03-18 18:30:29427 "filesystem_service_unittests": {
erg4652931e2016-04-27 22:15:40428 "label": "//components/filesystem:filesystem_service_unittests",
erg716b6172016-03-18 18:30:29429 "type": "console_test_launcher",
430 },
dprankea55584f12015-07-22 00:52:47431 "gcm_unit_tests": {
432 "label": "//google_apis/gcm:gcm_unit_tests",
dprankef497c7962015-07-31 19:46:23433 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47434 },
435 "gfx_unittests": {
436 "label": "//ui/gfx:gfx_unittests",
dprankef497c7962015-07-31 19:46:23437 "type": "raw",
438 "args": [],
dprankea55584f12015-07-22 00:52:47439 },
jochen656a7c92015-12-08 00:56:45440 "gin_unittests": {
441 "label": "//gin:gin_unittests",
442 "type": "console_test_launcher",
443 },
dprankedbdd9d82015-08-12 21:18:18444 "gles2_conform_test": {
445 "label": "//gpu/gles2_conform_support:gles2_conform_test",
446 "type": "console_test_launcher",
447 },
448 "gl_tests": {
449 "label": "//gpu:gl_tests",
450 "type": "raw",
451 "args": [],
452 },
dprankea55584f12015-07-22 00:52:47453 "gl_unittests": {
454 "label": "//ui/gl:gl_unittests",
vmpstrfaa78922016-12-21 02:12:21455 "type": "raw",
kylechared642742016-12-19 21:10:33456 "args": [],
kylechar50abf5a2016-11-29 16:03:07457 },
kylechar39705682017-01-19 14:37:23458 "gl_unittests_ozone": {
459 "label": "//ui/gl:gl_unittests_ozone",
vmpstrfaa78922016-12-21 02:12:21460 "label_type": "group",
461 "type": "windowed_test_launcher",
462 "executable": "gl_unittests",
vmpstrfaa78922016-12-21 02:12:21463 },
dprankea55584f12015-07-22 00:52:47464 "gn_unittests": {
465 "label": "//tools/gn:gn_unittests",
dpranke177c1e22015-07-22 23:07:43466 "type": "raw",
467 "args": [],
dprankea55584f12015-07-22 00:52:47468 },
469 "google_apis_unittests": {
470 "label": "//google_apis:google_apis_unittests",
dpranke358c73c2015-08-25 20:43:30471 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47472 },
markdittmer2ce53ac2016-05-05 16:21:02473 "gpu_ipc_service_unittests": {
474 "label": "//gpu/ipc/service:gpu_ipc_service_unittests",
475 "type": "windowed_test_launcher",
476 },
dprankea55584f12015-07-22 00:52:47477 "gpu_unittests": {
478 "label": "//gpu:gpu_unittests",
dprankef497c7962015-07-31 19:46:23479 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47480 },
dprankecb4a2e242016-09-19 01:13:14481 "headless_lib": {
482 "label": "//headless:headless_lib",
483 "type": "additional_compile_target",
484 },
perezjub8b863a02016-04-15 09:20:00485 "headless_browsertests": {
486 "label": "//headless:headless_browsertests",
487 "type": "console_test_launcher",
488 },
dprankecb4a2e242016-09-19 01:13:14489 "headless_shell": {
490 "label": "//headless:headless_shell",
491 "type": "additional_compile_target",
492 },
493 "headless_tests": {
494 "label": "//headless:headless_tests",
495 "type": "additional_compile_target",
496 },
perezjub8b863a02016-04-15 09:20:00497 "headless_unittests": {
498 "label": "//headless:headless_unittests",
499 "type": "console_test_launcher",
500 },
kylechar592104a2016-08-04 15:10:10501 "input_device_unittests": {
502 "label": "//services/ui/input_devices:input_device_unittests",
503 "type": "console_test_launcher",
504 },
dprankea55584f12015-07-22 00:52:47505 "installer_util_unittests": {
506 "label": "//chrome/installer/util:installer_util_unittests",
thakis33fc54c2016-02-13 01:51:16507 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47508 },
anantaf2e54a92016-05-28 00:39:16509 "install_static_unittests": {
510 "label": "//chrome/install_static:install_static_unittests",
511 "type": "console_test_launcher",
512 },
dprankea55584f12015-07-22 00:52:47513 "interactive_ui_tests": {
514 "label": "//chrome/test:interactive_ui_tests",
dprankef497c7962015-07-31 19:46:23515 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47516 },
dprankecb4a2e242016-09-19 01:13:14517 "ios_chrome_unittests": {
sdefresnee51457b2016-12-15 09:11:44518 "label": "//ios/chrome/test:ios_chrome_unittests",
dprankecb4a2e242016-09-19 01:13:14519 "type": "raw",
520 "args": [],
521 },
522 "ios_net_unittests": {
523 "label": "//ios/net:ios_net_unittests",
524 "type": "raw",
525 "args": [],
526 },
527 "ios_web_inttests": {
528 "label": "//ios/web:ios_web_inttests",
529 "type": "raw",
530 "args": [],
531 },
532 "ios_web_unittests": {
533 "label": "//ios/web:ios_web_unittests",
534 "type": "raw",
535 "args": [],
536 },
dprankea55584f12015-07-22 00:52:47537 "ipc_tests": {
538 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43539 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47540 },
541 "jingle_unittests": {
542 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23543 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47544 },
dprankecb4a2e242016-09-19 01:13:14545 "junit_unit_tests": {
546 "label": "//testing/android/junit:junit_unit_tests",
547 "type": "junit_test",
548 },
dprankea55584f12015-07-22 00:52:47549 "keyboard_unittests": {
550 "label": "//ui/keyboard:keyboard_unittests",
maruel44522882016-08-04 17:59:11551 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47552 },
ergf1f689f2016-03-22 00:51:20553 "leveldb_service_unittests": {
554 "label": "//components/leveldb:leveldb_service_unittests",
555 "type": "console_test_launcher",
556 },
dpranke5e233662016-02-13 01:14:07557 # See http://crbug.com/585151
dprankecb4a2e242016-09-19 01:13:14558 "libaddressinput_unittests": {
559 "label": "//third_party/libaddressinput:libaddressinput_unittests",
560 "type": "console_test_launcher",
561 },
phoglund2357e822016-03-21 15:58:05562 # See http://crbug.com/585151
dprankecb4a2e242016-09-19 01:13:14563 "libphonenumber_unittests": {
564 "label": "//third_party/libphonenumber:libphonenumber_unittests",
565 "type": "console_test_launcher",
566 },
zengster7ec9ff52016-08-10 00:18:41567 "mac_installer_unittests": {
568 "label": "//chrome/installer/mac/app:mac_installer_unittests",
569 "type": "console_test_launcher",
570 },
dprankecb4a2e242016-09-19 01:13:14571 "mash:all" : {
572 "label": "//mash:all",
573 "type": "additional_compile_target",
574 },
kylechar309364b2017-02-10 18:51:30575 "mash_browser_tests": {
576 "label": "//chrome/test:mash_browser_tests",
577 "label_type": "group",
578 "type": "windowed_test_launcher",
579 "executable": "browser_tests",
580 "args": [
581 "--run-in-mash",
582 "--service-overrides=../../chrome/app/mash/mash_service_overrides.json",
583 ],
584 },
dprankea55584f12015-07-22 00:52:47585 "media_unittests": {
586 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23587 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47588 },
xhwang9c958fd2016-12-05 23:17:16589 "media_service_unittests": {
590 "label": "//media/mojo/services:media_service_unittests",
bena5d1cd42016-04-29 22:59:53591 "type": "console_test_launcher",
592 },
hubbe2dc5a592015-09-23 23:29:31593 "media_blink_unittests": {
594 "label": "//media/blink:media_blink_unittests",
595 "type": "windowed_test_launcher",
596 },
cliffordcheng24894e8a2016-12-05 22:31:11597 "media_router_perf_tests": {
598 "label": "//chrome/test/media_router:media_router_perf_tests",
599 "type": "script",
cliffordcheng28deea192017-01-14 04:21:50600 "script": "//chrome/test/media_router/telemetry/run_benchmark.py",
cliffordcheng24894e8a2016-12-05 22:31:11601 "args": [
602 "--browser=release",
603 "--also-run-disabled-tests",
604 "-v",
605 "--use-live-sites",
606 "--output-format=chartjson",
607 "--output-dir=${ISOLATED_OUTDIR}",
608 ],
609 },
cliffordchengf7655ed2016-11-29 03:07:55610 "media_router_tests": {
611 "label": "//chrome/test/media_router:media_router_tests",
612 "type": "script",
613 "script": "//chrome/test/media_router/internal/media_router_tests.py",
614 "args": [
615 "--extension",
616 "mr_extension/",
617 "--test_binary",
618 "./browser_tests",
619 ],
620 },
martinissee599af2017-02-06 23:19:43621 "microdump_stackwalk" : {
622 "label": "//breakpad:microdump_stackwalk",
623 "type": "additional_compile_target",
624 },
dprankea55584f12015-07-22 00:52:47625 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30626 "label": "//media/midi:midi_unittests",
627 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47628 },
dprankecb4a2e242016-09-19 01:13:14629 "mini_installer": {
630 "label": "//chrome/installer/mini_installer:mini_installer",
631 "type": "additional_compile_target",
632 },
dprankea55584f12015-07-22 00:52:47633 "mojo_common_unittests": {
634 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23635 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47636 },
yzshen1d7a11c2016-01-27 00:16:32637 "mojo_js_integration_tests": {
alokp210e57b22017-01-20 20:36:26638 "label": "//mojo/edk/js/tests:mojo_js_integration_tests",
yzshen1d7a11c2016-01-27 00:16:32639 "type": "console_test_launcher",
640 },
641 "mojo_js_unittests": {
alokp210e57b22017-01-20 20:36:26642 "label": "//mojo/edk/js/tests:mojo_js_unittests",
yzshen1d7a11c2016-01-27 00:16:32643 "type": "console_test_launcher",
644 },
dprankea55584f12015-07-22 00:52:47645 "mojo_public_application_unittests": {
rockot734fb662016-10-15 16:41:30646 "label": "//services/service_manager/public/cpp/tests:mojo_public_application_unittests",
sammc98ecd4a2016-04-29 01:59:21647 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47648 },
649 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08650 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23651 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47652 },
dprankea55584f12015-07-22 00:52:47653 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08654 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35655 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47656 },
dprankea55584f12015-07-22 00:52:47657 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08658 "label": "//mojo/edk/system:mojo_system_unittests",
sammc98ecd4a2016-04-29 01:59:21659 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47660 },
sammc9b709032016-08-12 00:35:24661 "mojo_test_apk": {
662 "label": "//mojo/android:mojo_test_apk",
663 "type": "console_test_launcher",
664 },
erg703e3fa72016-05-20 00:37:59665 "mus_clipboard_unittests": {
ben6b0453d12016-07-02 04:27:19666 "label": "//services/ui/clipboard:mus_clipboard_unittests",
erg703e3fa72016-05-20 00:37:59667 "type": "windowed_test_launcher",
668 },
sky7366c2b2016-05-13 23:34:09669 "mus_public_unittests": {
ben6b0453d12016-07-02 04:27:19670 "label": "//services/ui/public/cpp/tests:mus_public_unittests",
sammc98ecd4a2016-04-29 01:59:21671 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47672 },
673 "message_center_unittests": {
674 "label": "//ui/message_center:message_center_unittests",
dpranke94c6fb22016-06-10 01:55:08675 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47676 },
sky130827232015-11-23 20:41:08677 "mash_unittests": {
678 "label": "//mash:mash_unittests",
sky57052d022016-04-29 17:18:23679 "type": "windowed_test_launcher",
sky97b65592015-11-02 20:08:25680 },
penghuangb5487ec2016-04-29 01:16:29681 "mus_gpu_unittests": {
ben6b0453d12016-07-02 04:27:19682 "label": "//services/ui/gpu:mus_gpu_unittests",
penghuangb5487ec2016-04-29 01:16:29683 "type": "console_test_launcher",
684 },
kylechar22c22eb2016-09-16 18:34:29685 "mus_demo_unittests": {
686 "label": "//services/ui/demo:mus_demo_unittests",
687 "type": "windowed_test_launcher",
688 },
rockot6a2b0422016-03-09 17:14:59689 "mus_ws_unittests": {
ben6b0453d12016-07-02 04:27:19690 "label": "//services/ui/ws:mus_ws_unittests",
rockot6a2b0422016-03-09 17:14:59691 "type": "windowed_test_launcher",
692 },
maruel44522882016-08-04 17:59:11693 "nacl_helper_nonsfi_unittests": {
694 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
695 "type": "raw",
696 "args": [],
697 },
dprankea55584f12015-07-22 00:52:47698 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13699 "label": "//components/nacl/loader:nacl_loader_unittests",
dprankef497c7962015-07-31 19:46:23700 "type": "raw",
701 "args": [],
dprankea55584f12015-07-22 00:52:47702 },
benee648f62016-05-12 23:04:50703 "navigation_unittests": {
704 "label": "//services/navigation:navigation_unittests",
705 "type": "windowed_test_launcher",
706 },
dprankecb4a2e242016-09-19 01:13:14707 "net_junit_tests": {
708 "label": "//net/android:net_junit_tests",
709 "type": "junit_test",
710 },
dprankea55584f12015-07-22 00:52:47711 "net_unittests": {
712 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23713 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47714 },
dprankecb4a2e242016-09-19 01:13:14715 "next_version_mini_installer": {
716 "label": "//chrome/installer/mini_installer:next_version_mini_installer",
717 "type": "additional_compile_target",
718 },
dprankea55584f12015-07-22 00:52:47719 "ozone_unittests": {
720 "label": "//ui/ozone:ozone_unittests",
maruel44522882016-08-04 17:59:11721 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47722 },
kylechar4fab9212016-08-24 21:09:10723 "ozone_gl_unittests": {
724 "label": "//ui/ozone/gl:ozone_gl_unittests",
725 "type": "console_test_launcher",
726 },
art-snakea84bce92016-10-27 19:16:49727 "pdf_unittests": {
728 "label": "//pdf:pdf_unittests",
729 "type": "console_test_launcher",
730 },
machenbach5da31892016-09-19 15:06:42731 "pdfium_test": {
732 "label": "//third_party/pdfium/samples:pdfium_test",
733 "type": "additional_compile_target",
734 },
machenbach5da31892016-09-19 15:06:42735 "postmortem-metadata": {
736 "label": "//v8:postmortem-metadata",
737 "type": "additional_compile_target",
738 },
dprankea55584f12015-07-22 00:52:47739 "ppapi_unittests": {
740 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48741 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47742 },
743 "printing_unittests": {
744 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23745 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47746 },
747 "remoting_unittests": {
748 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23749 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47750 },
dprankea55584f12015-07-22 00:52:47751 "sandbox_linux_unittests": {
752 "label": "//sandbox/linux:sandbox_linux_unittests",
dpranke177c1e22015-07-22 23:07:43753 "type": "raw",
754 "args": [],
dprankea55584f12015-07-22 00:52:47755 },
756 "sandbox_mac_unittests": {
757 "label": "//sandbox/mac:sandbox_mac_unittests",
rsesek172b7352016-05-10 22:27:26758 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47759 },
760 "sbox_integration_tests": {
761 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16762 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47763 },
764 "sbox_unittests": {
765 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16766 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47767 },
768 "sbox_validation_tests": {
769 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16770 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47771 },
bendb45a532016-10-15 01:22:09772 "service_manager_unittests": {
rockot734fb662016-10-15 16:41:30773 "label": "//services/service_manager/tests:service_manager_unittests",
bendb45a532016-10-15 01:22:09774 "type": "console_test_launcher",
775 },
rockot8cdd37a2017-01-28 02:53:31776 "service_unittests": {
777 "label": "//services:service_unittests",
778 "type": "console_test_launcher",
779 },
dprankea55584f12015-07-22 00:52:47780 "setup_unittests": {
781 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59782 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47783 },
784 "skia_unittests": {
785 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43786 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47787 },
eseckler7233c1a72017-01-25 15:07:54788 "snapshot_unittests": {
789 "label": "//ui/snapshot:snapshot_unittests",
790 "type": "windowed_test_launcher",
791 },
dprankea55584f12015-07-22 00:52:47792 "sql_unittests": {
793 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43794 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47795 },
pwnall008c0272016-10-14 16:54:04796 "storage_unittests": {
797 "label": "//storage/browser:storage_unittests",
798 "type": "console_test_launcher",
799 },
sugoic9c93b52017-01-12 16:11:02800 "swiftshader_unittests": {
801 "label": "//third_party/swiftshader/tests/unittests:swiftshader_unittests",
802 "type": "raw",
803 "args": [],
804 },
dprankea55584f12015-07-22 00:52:47805 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23806 "label": "//chrome/test:sync_integration_tests",
807 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47808 },
dprankecb4a2e242016-09-19 01:13:14809 "system_webview_apk": {
810 "label": "//android_webview:system_webview_apk",
811 "type": "additional_compile_target",
812 },
dprankedbdd9d82015-08-12 21:18:18813 "tab_capture_end2end_tests": {
814 "label": "//chrome/test:browser_tests",
815 "type": "gpu_browser_test",
816 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApiPixelTest.EndToEnd*",
817 },
kbr48321ca02016-06-23 03:24:08818 "telemetry_gpu_integration_test": {
819 "label": "//chrome/test:telemetry_gpu_integration_test",
820 "type": "script",
821 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
822 "args": [
823 "../../content/test/gpu/run_gpu_integration_test.py",
824 ],
825 },
nednguyenfbee71a62015-10-01 12:41:13826 "telemetry_gpu_unittests": {
827 "label": "//chrome/test:telemetry_gpu_unittests",
828 "type": "script",
829 "script": "//testing/scripts/run_telemetry_as_googletest.py",
830 "args": [
831 "../../content/test/gpu/run_unittests.py",
832 "-v",
833 ],
834 },
nednguyen9ce21622015-10-08 12:30:48835 "telemetry_perf_unittests": {
836 "label": "//chrome/test:telemetry_perf_unittests",
837 "type": "script",
838 "script": "//testing/scripts/run_telemetry_as_googletest.py",
839 "args": [
nednguyen9ce21622015-10-08 12:30:48840 "../../tools/perf/run_tests",
841 "-v",
842 ],
843 },
eyaichd158d952016-09-02 13:23:41844 "telemetry_perf_tests": {
845 "label": "//chrome/test:telemetry_perf_tests",
846 "type": "script",
847 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
848 "args": [
849 "../../tools/perf/run_benchmark",
850 ],
851 },
nednguyen8365ba52015-11-18 15:52:46852 "telemetry_unittests": {
853 "label": "//chrome/test:telemetry_unittests",
854 "type": "script",
855 "script": "//testing/scripts/run_telemetry_as_googletest.py",
856 "args": [
857 "--xvfb",
nednguyena91919182016-01-13 18:31:53858 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46859 "-v",
nednguyene882052d2016-12-13 12:36:41860 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
861 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
862 "--jobs=1",
nednguyen8365ba52015-11-18 15:52:46863 "--chrome-root",
864 "../../",
865 ],
866 },
eyaich7c79b912016-10-29 00:39:25867 "cc_perftests": {
868 "label": "//cc:cc_perftests",
869 "type": "script",
870 "script": "//testing/scripts/run_gtest_perf_test.py",
871 "args": [
872 "cc_perftests",
873 ],
874 },
crouleau98e395312017-01-12 01:29:48875 "media_perftests": {
876 "label": "//media:media_perftests",
877 "type": "script",
878 "script": "//testing/scripts/run_gtest_perf_test.py",
879 "args": [
880 "media_perftests",
881 ],
882 },
eyaichd3e023c12016-11-14 22:41:01883 "load_library_perf_tests": {
884 "label": "//chrome/test:load_library_perf_tests",
885 "type": "script",
886 "script": "//testing/scripts/run_gtest_perf_test.py",
887 "args": [
888 "load_library_perf_tests",
889 "--test-launcher-print-test-stdio=always"
890 ],
891 },
892 "tracing_perftests": {
893 "label": "//components/tracing:tracing_perftests",
894 "type": "script",
895 "script": "//testing/scripts/run_gtest_perf_test.py",
896 "args": [
897 "tracing_perftests",
898 "--test-launcher-print-test-stdio=always"
899 ],
900 },
901 "gpu_perftests": {
902 "label": "//gpu:gpu_perftests",
903 "type": "script",
904 "script": "//testing/scripts/run_gtest_perf_test.py",
905 "args": [
906 "gpu_perftests",
907 "--adb-path",
908 "src/third_party/catapult/devil/bin/deps/linux2/x86_64/bin/adb"
909 ],
910 },
911 "angle_perftests": {
eyaich87225102016-11-15 15:15:17912 "label": "//chrome/test:angle_perftests",
eyaichd3e023c12016-11-14 22:41:01913 "type": "script",
914 "script": "//testing/scripts/run_gtest_perf_test.py",
915 "args": [
916 "angle_perftests",
917 "--test-launcher-print-test-stdio=always",
918 "--test-launcher-jobs=1"
919 ],
920 },
921 "performance_browser_tests": {
eyaich87225102016-11-15 15:15:17922 "label": "//chrome/test:performance_browser_tests",
eyaichd3e023c12016-11-14 22:41:01923 "type": "script",
924 "script": "//testing/scripts/run_gtest_perf_test.py",
925 "args": [
926 "performance_browser_tests",
927 "--test-launcher-print-test-stdio=always",
928 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
929 "--test-launcher-jobs=1",
930 "--enable-gpu"
931 ],
932 },
moshayedi31ca0f72016-08-09 20:51:12933 "mus_ime_unittests": {
934 "label": "//services/ui/ime:mus_ime_unittests",
moshayedic3677492016-07-28 17:20:30935 "type": "windowed_test_launcher",
936 },
tapted5f112f292016-12-11 23:59:40937 "native_theme_unittests": {
938 "label": "//ui/native_theme:native_theme_unittests",
939 "type": "windowed_test_launcher",
940 },
pkotwicz280f66602015-11-04 02:51:55941 "ui_android_unittests": {
942 "label": "//ui/android:ui_android_unittests",
943 "type": "console_test_launcher",
944 },
dprankea55584f12015-07-22 00:52:47945 "ui_base_unittests": {
946 "label": "//ui/base:ui_base_unittests",
947 "type": "windowed_test_launcher",
948 },
949 "ui_chromeos_unittests": {
950 "label": "//ui/chromeos:ui_chromeos_unittests",
maruel44522882016-08-04 17:59:11951 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47952 },
yoshiki8e2ddbb2016-03-10 07:11:22953 "ui_arc_unittests": {
954 "label": "//ui/arc:ui_arc_unittests",
955 "type": "raw",
956 "args": [],
957 },
dprankecb4a2e242016-09-19 01:13:14958 "ui_junit_tests": {
959 "label": "//ui/android:ui_junit_tests",
960 "type": "junit_test",
961 },
kylechar89355872016-08-02 17:59:57962 "ui_struct_traits_unittests": {
963 "label": "//services/ui/public/interfaces:ui_struct_traits_unittests",
964 "type": "console_test_launcher",
965 },
dprankea55584f12015-07-22 00:52:47966 "ui_touch_selection_unittests": {
967 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:00968 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47969 },
970 "unit_tests": {
971 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:23972 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47973 },
974 "url_unittests": {
975 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:43976 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47977 },
jbaumand69f1172017-01-10 01:46:49978 "video_decode_accelerator_unittest": {
979 "label": "//media/gpu:video_decode_accelerator_unittest",
980 "type": "raw",
981 "args": [],
982 },
qyearsley88bc4802016-05-17 18:02:34983 "views_mus_interactive_ui_tests": {
984 "label": "//ui/views/mus:views_mus_interactive_ui_tests",
985 "type": "windowed_test_launcher",
986 },
msw2e3ff862016-02-26 02:20:09987 "views_mus_unittests": {
988 "label": "//ui/views/mus:views_mus_unittests",
989 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47990 },
991 "views_unittests": {
992 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:10993 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47994 },
bsheedy4b23d0b2016-09-20 23:35:03995 "vr_shell_unittests": {
996 "label": "//chrome/browser/android/vr_shell:vr_shell_unittests",
997 "type": "console_test_launcher",
998 },
dprankecb4a2e242016-09-19 01:13:14999 "webapk_client_junit_tests": {
1000 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
1001 "type": "junit_test",
1002 },
1003 "webapk_shell_apk_junit_tests": {
dpranke43e6a6d2016-09-19 02:10:241004 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
dprankecb4a2e242016-09-19 01:13:141005 "type": "junit_test",
1006 },
tansell88df42592016-11-15 07:22:591007 "webkit_layout_tests": {
1008 "label": "//:webkit_layout_tests",
1009 "type": "script",
tansell0e6baaf22017-02-16 09:14:531010 "script": "//testing/scripts/run_isolated_script_test.py",
1011 "args": [
1012 "--xvfb",
1013 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1014 "--clobber-old-results",
1015 "--debug-rwt-logging",
1016 "--no-show-results",
1017 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1018 ],
1019 },
1020 "webkit_layout_tests_exparchive": {
1021 "label": "//:webkit_layout_tests_exparchive",
1022 "type": "script",
1023 "script": "//testing/scripts/run_isolated_script_test.py",
tansell88df42592016-11-15 07:22:591024 "args": [
1025 "--xvfb",
1026 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
tansell9ca24bfb2017-02-16 13:56:311027 "--seed", "4",
tansell88df42592016-11-15 07:22:591028 "--no-show-results",
tansell9ca24bfb2017-02-16 13:56:311029 "--full-results-html",
1030 "--clobber-old-results",
1031 "--exit-after-n-failures", "5000",
1032 "--exit-after-n-crashes-or-timeouts", "100",
1033 "--debug-rwt-logging",
tansell88df42592016-11-15 07:22:591034 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1035 ],
1036 },
dprankea55584f12015-07-22 00:52:471037 "webkit_unit_tests": {
Dirk Pranke1b64ac442015-12-10 01:47:021038 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
1039 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471040 },
1041 "wm_unittests": {
1042 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:001043 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471044 },
1045 "wtf_unittests": {
Dirk Pranke1b64ac442015-12-10 01:47:021046 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
1047 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471048 },
dprankea55584f12015-07-22 00:52:471049}