blob: 479680bea3931944c49a5c98437664b3b2c33f2a [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.
dprankecb4a2e242016-09-19 01:13:1433# "additional_compile_target"
34# : this isn't actually a test, but we still need a mapping from the
35# ninja target to the GN label in order to analyze it.
36# "junit_test"
37# : this is a JUnit test.
dprankea55584f12015-07-22 00:52:4738# "raw"
39# : the test is a standalone executable; it may take an optional list of
dprankefe0d35e2016-02-05 02:43:5940# command line arguments in the "args" field, but otherwise needs no
dprankea55584f12015-07-22 00:52:4741# extra files or special handling.
dprankefe0d35e2016-02-05 02:43:5942# "script"
43# : the test is a python script; the path to the script is specified in
44# the "script" field.
dprankea55584f12015-07-22 00:52:4745# "unknown"
46# : (the default), which indicates that we don't know what the command line
47# needs to be (this is a fatal error).
dprankefe0d35e2016-02-05 02:43:5948#
49# The optional "executable" field can be used to override the name
50# of the binary to run. If the field is not specified, the binary
51# name will be assumed to be the same as the ninja build target name.
52# On Windows, ".exe" will be automatically appended if need be, so
53# the executable name (and target name) should not contain an ".exe".
54#
55# The optional "args" field can be used to append extra command line
56# args onto the command line determined by the "type". If not specified,
57# it defaults to an empty list (no extra args).
58#
59# The optional "label_type" field can be used in conjunction with
60# "type" == "console_test_launcher" or "type" == "windowed_test_launcher"
61# to indicate that even though the command line
62# to use follows the test_launcher patterns, the actual GN label refers
63# to a different type of thing (usually a "group") and so MB can find
64# the generated runtime files in the right place. This is used, for
65# example, in content_site_isolation_browsertests .
66#
67# The optional "script" field is used when "type" == "script", and
68# specifies the GN path to the corresponding python file, e.g.
69# "//testing/scripts/foo.py".
dprankea55584f12015-07-22 00:52:4770
71{
dprankecb4a2e242016-09-19 01:13:1472 "All": {
73 "label": "//:All",
74 "type": "additional_compile_target",
75 },
76 "All_syzygy": {
77 "label": "//:All_syzygy",
78 "type": "additional_compile_target",
79 },
dprankea55584f12015-07-22 00:52:4780 "accessibility_unittests": {
81 "label": "//ui/accessibility:accessibility_unittests",
pcc9c98ed22017-06-29 22:16:1182 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:4783 },
jbudorick73567ae2016-02-09 00:17:2584 "android_webview_unittests": {
85 "label": "//android_webview/test:android_webview_unittests",
86 "type": "console_test_launcher",
87 },
jmadill9b384b782016-03-16 00:21:3288 "angle_deqp_egl_tests": {
89 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
90 "type": "raw",
91 "args": [],
92 },
cwallez18d5b4e2016-02-05 01:18:2393 "angle_deqp_gles2_tests": {
94 "label": "//third_party/angle/src/tests:angle_deqp_gles2_tests",
95 "type": "raw",
96 "args": [],
97 },
98 "angle_deqp_gles3_tests": {
99 "label": "//third_party/angle/src/tests:angle_deqp_gles3_tests",
100 "type": "raw",
101 "args": [],
102 },
geofflang366f3af12016-12-01 18:08:11103 "angle_deqp_gles31_tests": {
104 "label": "//third_party/angle/src/tests:angle_deqp_gles31_tests",
105 "type": "raw",
106 "args": [],
107 },
dpranke6abd8652015-08-28 03:21:11108 "angle_end2end_tests": {
dprankee35c4f72015-09-04 01:04:12109 "label": "//third_party/angle/src/tests:angle_end2end_tests",
dpranke6abd8652015-08-28 03:21:11110 "type": "raw",
111 "args": [],
112 },
ynovikov55e66c22017-02-16 15:45:37113 "angle_white_box_tests": {
114 "label": "//third_party/angle/src/tests:angle_white_box_tests",
115 "type": "raw",
116 "args": [],
117 },
dprankea55584f12015-07-22 00:52:47118 "angle_unittests": {
dprankee35c4f72015-09-04 01:04:12119 "label": "//third_party/angle/src/tests:angle_unittests",
pcc381297ba2017-06-30 18:37:07120 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47121 },
122 "app_list_unittests": {
123 "label": "//ui/app_list:app_list_unittests",
dprankea21b31b02015-07-24 21:42:00124 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47125 },
mfomitchevda899d82016-04-15 22:20:37126 "app_list_presenter_unittests": {
127 "label": "//ui/app_list/presenter:app_list_presenter_unittests",
mfomitchev216ff0b2016-04-06 19:45:39128 "type": "windowed_test_launcher",
129 },
dprankea55584f12015-07-22 00:52:47130 "app_shell_unittests": {
131 "label": "//extensions/shell:app_shell_unittests",
dprankea21b31b02015-07-24 21:42:00132 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47133 },
skycf094f672016-09-01 19:40:12134 "ash_content_unittests": {
135 "label": "//ash:ash_content_unittests",
136 "type": "windowed_test_launcher",
137 },
dprankea55584f12015-07-22 00:52:47138 "ash_unittests": {
139 "label": "//ash:ash_unittests",
mswda0133e62016-02-16 20:50:02140 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47141 },
kbr39bc5e6d2015-12-31 00:01:43142 "audio_unittests": {
143 "label": "//media:audio_unittests",
144 "type": "raw",
145 "args": [],
146 },
dprankea55584f12015-07-22 00:52:47147 "aura_unittests": {
148 "label": "//ui/aura:aura_unittests",
dprankea21b31b02015-07-24 21:42:00149 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47150 },
bsheedy84541d552017-04-13 01:24:37151 "motopho_latency_test": {
bsheedya1584812017-04-20 21:35:27152 "label": "//chrome/test/vr/perf:motopho_latency_test",
bsheedy84541d552017-04-13 01:24:37153 "type": "script",
154 "script": "//chrome/test/vr/perf/latency/run_latency_test.py",
155 "args": [
156 "--output-dir=${ISOLATED_OUTDIR}",
157 "-v",
158 ],
159 },
bsheedy846c5d242017-06-26 17:38:48160 "vrcore_fps_test": {
161 "label": "//chrome/test/vr/perf:vrcore_fps_test",
162 "type": "script",
163 "script": "//chrome/test/vr/perf/vrcore_fps/run_vrcore_fps_test.py",
164 "args": [
165 "--output-dir=${ISOLATED_OUTDIR}",
166 "-v",
167 ],
168 },
dprankecb4a2e242016-09-19 01:13:14169 "base_junit_tests": {
170 "label": "//base:base_junit_tests",
171 "type": "junit_test",
172 },
dprankea55584f12015-07-22 00:52:47173 "base_unittests": {
174 "label": "//base:base_unittests",
175 "type": "console_test_launcher",
176 },
charliea5daef2bb2016-01-29 00:13:25177 "battor_agent_unittests": {
178 "label": "//tools/battor_agent:battor_agent_unittests",
179 "type": "console_test_launcher",
180 },
dprankea55584f12015-07-22 00:52:47181 "blink_heap_unittests": {
brettw4a6700a2016-09-01 01:24:01182 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
Dirk Pranke49802732015-12-10 01:36:41183 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47184 },
185 "blink_platform_unittests": {
Dirk Pranke49802732015-12-10 01:36:41186 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests",
187 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47188 },
dprankecb4a2e242016-09-19 01:13:14189 "blink_tests": {
190 "label": "//:blink_tests",
191 "type": "additional_compile_target",
192 },
davidben718d5652017-05-10 19:59:21193 "boringssl_crypto_tests": {
194 "label": "//third_party/boringssl:boringssl_crypto_tests",
195 "type": "console_test_launcher",
196 },
197 "boringssl_ssl_tests": {
198 "label": "//third_party/boringssl:boringssl_ssl_tests",
199 "type": "console_test_launcher",
200 },
bpastened9c91b62015-11-17 22:57:42201 "breakpad_unittests": {
202 "label": "//breakpad:breakpad_unittests",
203 "type": "console_test_launcher",
204 },
dprankea55584f12015-07-22 00:52:47205 "browser_tests": {
206 "label": "//chrome/test:browser_tests",
jam66f8afe22015-08-09 04:41:40207 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47208 },
209 "cacheinvalidation_unittests": {
210 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
pcc9c98ed22017-06-29 22:16:11211 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47212 },
mcasasd2f53ea2016-06-24 19:24:27213 "capture_unittests": {
214 "label": "//media/capture:capture_unittests",
215 "type": "windowed_test_launcher",
216 },
kmackay421e3482016-05-16 18:05:01217 "cast_alsa_cma_backend_unittests": {
218 "label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests",
maruel44522882016-08-04 17:59:11219 "type": "console_test_launcher",
kmackay421e3482016-05-16 18:05:01220 },
dprankea55584f12015-07-22 00:52:47221 "cast_base_unittests": {
dprankecb4a2e242016-09-19 01:13:14222 "label": "//chromecast/base:cast_base_unittests",
maruel44522882016-08-04 17:59:11223 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47224 },
225 "cast_crash_unittests": {
226 "label": "//chromecast/crash:cast_crash_unittests",
maruel44522882016-08-04 17:59:11227 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47228 },
dprankecb4a2e242016-09-19 01:13:14229 "cast_media_unittests": {
230 "label": "//chromecast/media:cast_media_unittests",
231 "type": "console_test_launcher",
232 },
233 "cast_shell": {
234 "label": "//chromecast:cast_shell",
235 "type": "additional_compile_target",
236 },
237 "cast_shell_apk": {
238 "label": "//chromecast:cast_shell_apk",
239 "type": "additional_compile_target",
240 },
alokpe3bd5ed2016-11-16 15:57:10241 "cast_shell_browsertests": {
242 "label": "//chromecast:cast_shell_browsertests",
dprankecb4a2e242016-09-19 01:13:14243 "type": "console_test_launcher",
244 },
alokpe3bd5ed2016-11-16 15:57:10245 "cast_shell_unittests": {
246 "label": "//chromecast:cast_shell_unittests",
dpranke9f25f762016-11-15 23:40:36247 "type": "console_test_launcher",
248 },
dprankea55584f12015-07-22 00:52:47249 "cast_unittests": {
dprankea21b31b02015-07-24 21:42:00250 "label": "//media/cast:cast_unittests",
251 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47252 },
253 "cc_unittests": {
254 "label": "//cc:cc_unittests",
dpranke177c1e22015-07-22 23:07:43255 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47256 },
dprankecb4a2e242016-09-19 01:13:14257 "chrome": {
258 "label": "//chrome:chrome",
259 "type": "additional_compile_target",
260 },
grteec2afd2016-02-09 16:56:45261 "chrome_app_unittests": {
262 "label": "//chrome/test:chrome_app_unittests",
263 "type": "console_test_launcher",
264 },
dprankea55584f12015-07-22 00:52:47265 "chrome_elf_unittests": {
266 "label": "//chrome_elf:chrome_elf_unittests",
thakise782a76f2016-02-16 15:47:35267 "type": "raw",
dprankea55584f12015-07-22 00:52:47268 },
dprankecb4a2e242016-09-19 01:13:14269 "chrome_junit_tests": {
270 "label": "//chrome/android:chrome_junit_tests",
271 "type": "junit_test",
272 },
273 "chrome_official_builder": {
274 "label": "//:chrome_official_builder",
275 "type": "additional_compile_target",
276 },
277 "chrome_official_builder_no_unittests": {
278 "label": "//:chrome_official_builder_no_unittests",
279 "type": "additional_compile_target",
280 },
281 "chrome_public_apk": {
282 "label": "//chrome/android:chrome_public_apk",
283 "type": "additional_compile_target",
284 },
jbudoricke3c4f95e2016-04-28 23:17:38285 "chrome_public_test_apk": {
agrieve2e039c22016-04-27 22:57:53286 "label": "//chrome/android:chrome_public_test_apk",
287 "type": "console_test_launcher",
288 },
bsheedy8d420112017-02-23 21:10:45289 "chrome_public_test_vr_apk": {
290 "label": "//chrome/android:chrome_public_test_vr_apk",
291 "type": "console_test_launcher",
292 },
jbudoricke3c4f95e2016-04-28 23:17:38293 "chrome_sync_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53294 "label": "//chrome/android:chrome_sync_shell_test_apk",
295 "type": "console_test_launcher",
296 },
dprankea55584f12015-07-22 00:52:47297 "chromedriver_unittests": {
298 "label": "//chrome/test/chromedriver:chromedriver_unittests",
dpranke1643d222015-07-27 22:22:08299 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47300 },
301 "chromeos_unittests": {
302 "label": "//chromeos:chromeos_unittests",
brettw6df3e8c42016-04-14 21:07:13303 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47304 },
khorimoto050da2c2017-06-16 18:49:36305 "chromeos_components_unittests": {
306 "label": "//chromeos/components:chromeos_components_unittests",
307 "type": "console_test_launcher",
308 },
maruel44522882016-08-04 17:59:11309 "chromevox_tests": {
310 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests",
311 "type": "windowed_test_launcher",
312 },
dprankecb4a2e242016-09-19 01:13:14313 "chromium_builder_asan": {
314 "label": "//:chromium_builder_asan",
315 "type": "additional_compile_target",
316 },
dprankecb4a2e242016-09-19 01:13:14317 "chromium_builder_perf": {
318 "label": "//:chromium_builder_perf",
319 "type": "additional_compile_target",
320 },
dprankecb4a2e242016-09-19 01:13:14321 "chromium_swarm_tests": {
322 "label": "//:chromium_swarm_tests",
323 "type": "additional_compile_target",
324 },
325 "chromiumos_preflight": {
326 "label": "//:chromiumos_preflight",
327 "type": "additional_compile_target",
328 },
fgorski7c52dca2017-05-15 22:15:20329 "components_background_task_scheduler_junit_tests": {
330 "label": "//components/background_task_scheduler:components_background_task_scheduler_junit_tests",
331 "type": "junit_test",
332 },
dprankea55584f12015-07-22 00:52:47333 "components_browsertests": {
334 "label": "//components:components_browsertests",
dpranke1643d222015-07-27 22:22:08335 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47336 },
peter943bc63a2017-02-28 01:40:22337 "components_gcm_driver_junit_tests": {
338 "label": "//components/gcm_driver/android:components_gcm_driver_junit_tests",
339 "type": "junit_test",
340 },
dprankecb4a2e242016-09-19 01:13:14341 "components_invalidation_impl_junit_tests": {
342 "label": "//components/invalidation/impl:components_invalidation_impl_junit_tests",
343 "type": "junit_test",
344 },
345 "components_policy_junit_tests": {
346 "label": "//components/policy/android:components_policy_junit_tests",
347 "type": "junit_test",
348 },
dprankea55584f12015-07-22 00:52:47349 "components_unittests": {
350 "label": "//components:components_unittests",
dpranke1643d222015-07-27 22:22:08351 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47352 },
aberent1b0987f2017-01-25 09:25:49353 "components_variations_junit_tests": {
354 "label": "//components/variations/android:components_variations_junit_tests",
355 "type": "junit_test",
356 },
dprankecb4a2e242016-09-19 01:13:14357 "components_web_restrictions_junit_tests": {
358 "label": "//components/web_restrictions:components_web_restrictions_junit_tests",
359 "type": "junit_test",
360 },
dprankea55584f12015-07-22 00:52:47361 "compositor_unittests": {
362 "label": "//ui/compositor:compositor_unittests",
dpranke177c1e22015-07-22 23:07:43363 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47364 },
365 "content_browsertests": {
366 "label": "//content/test:content_browsertests",
dpranke1643d222015-07-27 22:22:08367 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47368 },
dprankecb4a2e242016-09-19 01:13:14369 "content_junit_tests": {
370 "label": "//content/public/android:content_junit_tests",
371 "type": "junit_test",
372 },
jochen0426747e2017-02-09 17:01:19373 "content_shell_crash_test": {
374 "label": "//content/shell:content_shell_crash_test",
375 "type": "script",
376 "script": "//testing/scripts/content_shell_crash_test.py",
377 },
jbudoricke3c4f95e2016-04-28 23:17:38378 "content_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53379 "label": "//content/shell/android:content_shell_test_apk",
380 "type": "console_test_launcher",
381 },
dprankea55584f12015-07-22 00:52:47382 "content_unittests": {
383 "label": "//content/test:content_unittests",
dpranke1643d222015-07-27 22:22:08384 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47385 },
386 "courgette_unittests": {
387 "label": "//courgette:courgette_unittests",
thakis6e0c3f82016-02-11 04:33:59388 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47389 },
dprankecb4a2e242016-09-19 01:13:14390 "cronet_package": {
391 "label": "//components/cronet/android:cronet_package",
392 "type": "additional_compile_target",
393 },
gcasto1821cea42016-10-05 17:50:45394 "cronet_test": {
gcasto25c8da8e2016-10-26 23:42:40395 "label": "//components/cronet/ios/test:cronet_test",
gcasto1821cea42016-10-05 17:50:45396 "type": "raw",
397 },
dprankecb4a2e242016-09-19 01:13:14398 "cronet_test_instrumentation_apk": {
399 "label": "//components/cronet/android:cronet_test_instrumentation_apk",
400 "type": "additional_compile_target",
401 },
dprankea55584f12015-07-22 00:52:47402 "crypto_unittests": {
403 "label": "//crypto:crypto_unittests",
dpranke1643d222015-07-27 22:22:08404 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47405 },
scottmg0f11d0f2017-06-11 06:49:58406 "d8": {
407 "label": "//v8:d8",
408 "type": "additional_compile_target",
409 },
dprankea55584f12015-07-22 00:52:47410 "dbus_unittests": {
411 "label": "//dbus:dbus_unittests",
maruel44522882016-08-04 17:59:11412 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47413 },
mcasaseddfbeb2017-05-10 04:47:49414 "device_junit_tests": {
415 "label": "//device:device_junit_tests",
416 "type": "junit_test",
417 },
dprankea55584f12015-07-22 00:52:47418 "device_unittests": {
419 "label": "//device:device_unittests",
dpranke1643d222015-07-27 22:22:08420 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47421 },
chenwilliam2ee4d24c92016-11-21 20:41:44422 "devtools_closure_compile": {
423 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile",
424 "type": "script",
chenwilliam56a90382016-12-09 02:16:28425 "script": "//testing/scripts/run_devtools_check.py",
chenwilliam2ee4d24c92016-11-21 20:41:44426 "args": [
427 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py",
428 ],
429 },
chenwilliam56a90382016-12-09 02:16:28430 "devtools_eslint": {
431 "label": "//third_party/WebKit/Source/devtools:devtools_eslint",
432 "type": "script",
433 "script": "//testing/scripts/run_devtools_check.py",
434 "args": [
435 "../../third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py",
436 ],
437 },
dprankea55584f12015-07-22 00:52:47438 "display_unittests": {
439 "label": "//ui/display:display_unittests",
dpranke1643d222015-07-27 22:22:08440 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47441 },
mikecaseba2be202017-03-10 18:14:24442 "dump_syms" : {
443 "label": "//breakpad:dump_syms",
444 "type": "additional_compile_target",
445 },
dprankea55584f12015-07-22 00:52:47446 "events_unittests": {
447 "label": "//ui/events:events_unittests",
dprankef497c7962015-07-31 19:46:23448 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47449 },
oshima2a44e112016-06-23 17:59:18450 "exo_unittests": {
451 "label": "//components/exo:exo_unittests",
452 "type": "windowed_test_launcher",
453 },
dprankea55584f12015-07-22 00:52:47454 "extensions_browsertests": {
455 "label": "//extensions:extensions_browsertests",
dprankef497c7962015-07-31 19:46:23456 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47457 },
458 "extensions_unittests": {
459 "label": "//extensions:extensions_unittests",
dprankef497c7962015-07-31 19:46:23460 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47461 },
erg716b6172016-03-18 18:30:29462 "filesystem_service_unittests": {
erg4652931e2016-04-27 22:15:40463 "label": "//components/filesystem:filesystem_service_unittests",
erg716b6172016-03-18 18:30:29464 "type": "console_test_launcher",
465 },
dprankea55584f12015-07-22 00:52:47466 "gcm_unit_tests": {
467 "label": "//google_apis/gcm:gcm_unit_tests",
dprankef497c7962015-07-31 19:46:23468 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47469 },
470 "gfx_unittests": {
471 "label": "//ui/gfx:gfx_unittests",
pcc9c98ed22017-06-29 22:16:11472 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47473 },
jochen656a7c92015-12-08 00:56:45474 "gin_unittests": {
475 "label": "//gin:gin_unittests",
476 "type": "console_test_launcher",
477 },
dprankedbdd9d82015-08-12 21:18:18478 "gles2_conform_test": {
479 "label": "//gpu/gles2_conform_support:gles2_conform_test",
480 "type": "console_test_launcher",
481 },
482 "gl_tests": {
483 "label": "//gpu:gl_tests",
484 "type": "raw",
485 "args": [],
486 },
dprankea55584f12015-07-22 00:52:47487 "gl_unittests": {
488 "label": "//ui/gl:gl_unittests",
pcc381297ba2017-06-30 18:37:07489 "type": "console_test_launcher",
kylechar50abf5a2016-11-29 16:03:07490 },
kylechar39705682017-01-19 14:37:23491 "gl_unittests_ozone": {
492 "label": "//ui/gl:gl_unittests_ozone",
vmpstrfaa78922016-12-21 02:12:21493 "label_type": "group",
494 "type": "windowed_test_launcher",
495 "executable": "gl_unittests",
vmpstrfaa78922016-12-21 02:12:21496 },
dprankea55584f12015-07-22 00:52:47497 "gn_unittests": {
498 "label": "//tools/gn:gn_unittests",
pcc9c98ed22017-06-29 22:16:11499 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47500 },
501 "google_apis_unittests": {
502 "label": "//google_apis:google_apis_unittests",
dpranke358c73c2015-08-25 20:43:30503 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47504 },
markdittmer2ce53ac2016-05-05 16:21:02505 "gpu_ipc_service_unittests": {
506 "label": "//gpu/ipc/service:gpu_ipc_service_unittests",
507 "type": "windowed_test_launcher",
508 },
dprankea55584f12015-07-22 00:52:47509 "gpu_unittests": {
510 "label": "//gpu:gpu_unittests",
dprankef497c7962015-07-31 19:46:23511 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47512 },
dprankecb4a2e242016-09-19 01:13:14513 "headless_lib": {
514 "label": "//headless:headless_lib",
515 "type": "additional_compile_target",
516 },
perezjub8b863a02016-04-15 09:20:00517 "headless_browsertests": {
518 "label": "//headless:headless_browsertests",
519 "type": "console_test_launcher",
520 },
dprankecb4a2e242016-09-19 01:13:14521 "headless_shell": {
522 "label": "//headless:headless_shell",
523 "type": "additional_compile_target",
524 },
525 "headless_tests": {
526 "label": "//headless:headless_tests",
527 "type": "additional_compile_target",
528 },
perezjub8b863a02016-04-15 09:20:00529 "headless_unittests": {
530 "label": "//headless:headless_unittests",
531 "type": "console_test_launcher",
532 },
dprankea55584f12015-07-22 00:52:47533 "installer_util_unittests": {
534 "label": "//chrome/installer/util:installer_util_unittests",
thakis33fc54c2016-02-13 01:51:16535 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47536 },
anantaf2e54a92016-05-28 00:39:16537 "install_static_unittests": {
538 "label": "//chrome/install_static:install_static_unittests",
539 "type": "console_test_launcher",
540 },
dprankea55584f12015-07-22 00:52:47541 "interactive_ui_tests": {
542 "label": "//chrome/test:interactive_ui_tests",
dprankef497c7962015-07-31 19:46:23543 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47544 },
smutb99217a2017-03-02 23:45:24545 "ios_chrome_integration_egtests": {
546 "label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
547 "type": "raw",
548 "args": [],
549 },
baxley491ee982017-03-31 15:17:49550 "ios_chrome_reading_list_egtests": {
551 "label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
552 "type": "raw",
553 "args": [],
554 },
smutb99217a2017-03-02 23:45:24555 "ios_chrome_settings_egtests": {
556 "label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
557 "type": "raw",
558 "args": [],
559 },
560 "ios_chrome_smoke_egtests": {
561 "label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
562 "type": "raw",
563 "args": [],
564 },
565 "ios_chrome_ui_egtests": {
566 "label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
567 "type": "raw",
568 "args": [],
569 },
dprankecb4a2e242016-09-19 01:13:14570 "ios_chrome_unittests": {
sdefresnee51457b2016-12-15 09:11:44571 "label": "//ios/chrome/test:ios_chrome_unittests",
dprankecb4a2e242016-09-19 01:13:14572 "type": "raw",
573 "args": [],
574 },
smutb99217a2017-03-02 23:45:24575 "ios_chrome_web_egtests": {
576 "label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
577 "type": "raw",
578 "args": [],
579 },
Mike Dougherty898a6902017-07-13 16:47:33580 "ios_components_unittests": {
581 "label": "//ios/components:ios_components_unittests",
582 "type": "raw",
583 "args": [],
584 },
dprankecb4a2e242016-09-19 01:13:14585 "ios_net_unittests": {
586 "label": "//ios/net:ios_net_unittests",
587 "type": "raw",
588 "args": [],
589 },
smutb99217a2017-03-02 23:45:24590 "ios_showcase_egtests": {
591 "label": "//ios/showcase:ios_showcase_egtests",
592 "type": "raw",
593 "args": [],
594 },
dprankecb4a2e242016-09-19 01:13:14595 "ios_web_inttests": {
596 "label": "//ios/web:ios_web_inttests",
597 "type": "raw",
598 "args": [],
599 },
smutb99217a2017-03-02 23:45:24600 "ios_web_shell_egtests": {
601 "label": "//ios/web/shell/test:ios_web_shell_egtests",
602 "type": "raw",
603 "args": [],
604 },
dprankecb4a2e242016-09-19 01:13:14605 "ios_web_unittests": {
606 "label": "//ios/web:ios_web_unittests",
607 "type": "raw",
608 "args": [],
609 },
Mike Dougherty33e75bbc2017-07-13 16:32:26610 "ios_web_view_inttests": {
611 "label": "//ios/web_view/test:ios_web_view_inttests",
612 "type": "raw",
613 "args": [],
614 },
dprankea55584f12015-07-22 00:52:47615 "ipc_tests": {
616 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43617 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47618 },
619 "jingle_unittests": {
620 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23621 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47622 },
dprankecb4a2e242016-09-19 01:13:14623 "junit_unit_tests": {
624 "label": "//testing/android/junit:junit_unit_tests",
625 "type": "junit_test",
626 },
dprankea55584f12015-07-22 00:52:47627 "keyboard_unittests": {
628 "label": "//ui/keyboard:keyboard_unittests",
yhanadafa661282017-07-13 03:09:11629 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47630 },
mfomitchevee01a832017-04-18 20:55:02631 "latency_unittests": {
632 "label": "//ui/latency:latency_unittests",
633 "type": "console_test_launcher",
634 },
ergf1f689f2016-03-22 00:51:20635 "leveldb_service_unittests": {
636 "label": "//components/leveldb:leveldb_service_unittests",
637 "type": "console_test_launcher",
638 },
Michael Achenbach377951a2017-07-12 09:15:33639 # See http://crbug.com/585151
640 "libaddressinput_unittests": {
641 "label": "//third_party/libaddressinput:libaddressinput_unittests",
642 "type": "console_test_launcher",
643 },
kjellanderd5fe9bf2017-04-13 09:05:02644 "libjingle_xmpp_unittests": {
645 "label": "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
646 "type": "console_test_launcher",
647 },
Michael Achenbach377951a2017-07-12 09:15:33648 # See http://crbug.com/585151
649 "libphonenumber_unittests": {
650 "label": "//third_party/libphonenumber:libphonenumber_unittests",
651 "type": "console_test_launcher",
652 },
zengster7ec9ff52016-08-10 00:18:41653 "mac_installer_unittests": {
654 "label": "//chrome/installer/mac/app:mac_installer_unittests",
655 "type": "console_test_launcher",
656 },
dprankecb4a2e242016-09-19 01:13:14657 "mash:all" : {
658 "label": "//mash:all",
659 "type": "additional_compile_target",
660 },
kylechar309364b2017-02-10 18:51:30661 "mash_browser_tests": {
662 "label": "//chrome/test:mash_browser_tests",
663 "label_type": "group",
664 "type": "windowed_test_launcher",
665 "executable": "browser_tests",
666 "args": [
667 "--run-in-mash",
kylechar309364b2017-02-10 18:51:30668 ],
669 },
dprankea55584f12015-07-22 00:52:47670 "media_unittests": {
671 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23672 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47673 },
xhwang9c958fd2016-12-05 23:17:16674 "media_service_unittests": {
675 "label": "//media/mojo/services:media_service_unittests",
bena5d1cd42016-04-29 22:59:53676 "type": "console_test_launcher",
677 },
hubbe2dc5a592015-09-23 23:29:31678 "media_blink_unittests": {
679 "label": "//media/blink:media_blink_unittests",
680 "type": "windowed_test_launcher",
681 },
cliffordcheng24894e8a2016-12-05 22:31:11682 "media_router_perf_tests": {
683 "label": "//chrome/test/media_router:media_router_perf_tests",
684 "type": "script",
cliffordcheng28deea192017-01-14 04:21:50685 "script": "//chrome/test/media_router/telemetry/run_benchmark.py",
cliffordcheng24894e8a2016-12-05 22:31:11686 "args": [
687 "--browser=release",
688 "--also-run-disabled-tests",
689 "-v",
690 "--use-live-sites",
691 "--output-format=chartjson",
692 "--output-dir=${ISOLATED_OUTDIR}",
693 ],
694 },
cliffordchengf7655ed2016-11-29 03:07:55695 "media_router_tests": {
696 "label": "//chrome/test/media_router:media_router_tests",
697 "type": "script",
698 "script": "//chrome/test/media_router/internal/media_router_tests.py",
699 "args": [
700 "--extension",
701 "mr_extension/",
702 "--test_binary",
703 "./browser_tests",
704 ],
705 },
martinissee599af2017-02-06 23:19:43706 "microdump_stackwalk" : {
707 "label": "//breakpad:microdump_stackwalk",
708 "type": "additional_compile_target",
709 },
dprankea55584f12015-07-22 00:52:47710 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30711 "label": "//media/midi:midi_unittests",
712 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47713 },
dprankecb4a2e242016-09-19 01:13:14714 "mini_installer": {
715 "label": "//chrome/installer/mini_installer:mini_installer",
716 "type": "additional_compile_target",
717 },
dprankea55584f12015-07-22 00:52:47718 "mojo_common_unittests": {
719 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23720 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47721 },
yzshen1d7a11c2016-01-27 00:16:32722 "mojo_js_unittests": {
alokp210e57b22017-01-20 20:36:26723 "label": "//mojo/edk/js/tests:mojo_js_unittests",
yzshen1d7a11c2016-01-27 00:16:32724 "type": "console_test_launcher",
725 },
dprankea55584f12015-07-22 00:52:47726 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08727 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23728 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47729 },
dprankea55584f12015-07-22 00:52:47730 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08731 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35732 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47733 },
dprankea55584f12015-07-22 00:52:47734 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08735 "label": "//mojo/edk/system:mojo_system_unittests",
sammc98ecd4a2016-04-29 01:59:21736 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47737 },
sammc9b709032016-08-12 00:35:24738 "mojo_test_apk": {
739 "label": "//mojo/android:mojo_test_apk",
740 "type": "console_test_launcher",
741 },
jonross5e09768c2017-04-21 20:39:34742 "mus_browser_tests": {
743 "label": "//chrome/test:mus_browser_tests",
744 "label_type": "group",
745 "type": "windowed_test_launcher",
746 "executable": "browser_tests",
747 "args": [
748 "--run-in-mus",
749 "--service-overrides=../../chrome/app/mash/mash_service_overrides.json",
750 ],
751 },
dprankea55584f12015-07-22 00:52:47752 "message_center_unittests": {
753 "label": "//ui/message_center:message_center_unittests",
dpranke94c6fb22016-06-10 01:55:08754 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47755 },
sky130827232015-11-23 20:41:08756 "mash_unittests": {
757 "label": "//mash:mash_unittests",
sky57052d022016-04-29 17:18:23758 "type": "windowed_test_launcher",
sky97b65592015-11-02 20:08:25759 },
maruel44522882016-08-04 17:59:11760 "nacl_helper_nonsfi_unittests": {
761 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
762 "type": "raw",
763 "args": [],
764 },
dprankea55584f12015-07-22 00:52:47765 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13766 "label": "//components/nacl/loader:nacl_loader_unittests",
pcc9c98ed22017-06-29 22:16:11767 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47768 },
dprankecb4a2e242016-09-19 01:13:14769 "net_junit_tests": {
770 "label": "//net/android:net_junit_tests",
771 "type": "junit_test",
772 },
xunjielibdefc4f2017-06-07 18:58:59773 "net_perftests": {
774 "label": "//net:net_perftests",
775 "type": "script",
776 "script": "//testing/scripts/run_gtest_perf_test.py",
777 "args": [
778 "net_perftests",
779 ],
780 },
dprankea55584f12015-07-22 00:52:47781 "net_unittests": {
782 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23783 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47784 },
dprankecb4a2e242016-09-19 01:13:14785 "next_version_mini_installer": {
786 "label": "//chrome/installer/mini_installer:next_version_mini_installer",
787 "type": "additional_compile_target",
788 },
dprankea55584f12015-07-22 00:52:47789 "ozone_unittests": {
790 "label": "//ui/ozone:ozone_unittests",
maruel44522882016-08-04 17:59:11791 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47792 },
kylechar4fab9212016-08-24 21:09:10793 "ozone_gl_unittests": {
794 "label": "//ui/ozone/gl:ozone_gl_unittests",
795 "type": "console_test_launcher",
796 },
art-snakea84bce92016-10-27 19:16:49797 "pdf_unittests": {
798 "label": "//pdf:pdf_unittests",
799 "type": "console_test_launcher",
800 },
Michael Achenbach377951a2017-07-12 09:15:33801 "pdfium_test": {
802 "label": "//third_party/pdfium/samples:pdfium_test",
803 "type": "additional_compile_target",
804 },
805 "postmortem-metadata": {
806 "label": "//v8:postmortem-metadata",
807 "type": "additional_compile_target",
808 },
dprankea55584f12015-07-22 00:52:47809 "ppapi_unittests": {
810 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48811 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47812 },
813 "printing_unittests": {
814 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23815 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47816 },
817 "remoting_unittests": {
818 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23819 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47820 },
dprankea55584f12015-07-22 00:52:47821 "sandbox_linux_unittests": {
822 "label": "//sandbox/linux:sandbox_linux_unittests",
pcc9c98ed22017-06-29 22:16:11823 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47824 },
825 "sandbox_mac_unittests": {
826 "label": "//sandbox/mac:sandbox_mac_unittests",
rsesek172b7352016-05-10 22:27:26827 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47828 },
829 "sbox_integration_tests": {
830 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16831 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47832 },
833 "sbox_unittests": {
834 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16835 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47836 },
837 "sbox_validation_tests": {
838 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16839 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47840 },
bendb45a532016-10-15 01:22:09841 "service_manager_unittests": {
rockot734fb662016-10-15 16:41:30842 "label": "//services/service_manager/tests:service_manager_unittests",
bendb45a532016-10-15 01:22:09843 "type": "console_test_launcher",
844 },
ke.heaf8ead22017-05-13 03:54:30845 "service_junit_tests": {
846 "label": "//services:service_junit_tests",
847 "type": "junit_test",
848 },
ergcd559ca2017-05-26 23:43:38849 "services_unittests": {
850 "label": "//services:services_unittests",
ergf4938cd2017-05-19 01:42:08851 "type": "windowed_test_launcher",
rockot8cdd37a2017-01-28 02:53:31852 },
dprankea55584f12015-07-22 00:52:47853 "setup_unittests": {
854 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59855 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47856 },
857 "skia_unittests": {
858 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43859 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47860 },
eseckler7233c1a72017-01-25 15:07:54861 "snapshot_unittests": {
862 "label": "//ui/snapshot:snapshot_unittests",
863 "type": "windowed_test_launcher",
864 },
dprankea55584f12015-07-22 00:52:47865 "sql_unittests": {
866 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43867 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47868 },
pwnall008c0272016-10-14 16:54:04869 "storage_unittests": {
pwnall9f1622a2017-04-21 09:39:02870 "label": "//storage:storage_unittests",
pwnall008c0272016-10-14 16:54:04871 "type": "console_test_launcher",
872 },
sugoic9c93b52017-01-12 16:11:02873 "swiftshader_unittests": {
874 "label": "//third_party/swiftshader/tests/unittests:swiftshader_unittests",
875 "type": "raw",
876 "args": [],
877 },
dprankea55584f12015-07-22 00:52:47878 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23879 "label": "//chrome/test:sync_integration_tests",
880 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47881 },
dprankecb4a2e242016-09-19 01:13:14882 "system_webview_apk": {
883 "label": "//android_webview:system_webview_apk",
884 "type": "additional_compile_target",
885 },
kbr48321ca02016-06-23 03:24:08886 "telemetry_gpu_integration_test": {
887 "label": "//chrome/test:telemetry_gpu_integration_test",
888 "type": "script",
889 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
890 "args": [
891 "../../content/test/gpu/run_gpu_integration_test.py",
892 ],
893 },
nednguyenfbee71a62015-10-01 12:41:13894 "telemetry_gpu_unittests": {
895 "label": "//chrome/test:telemetry_gpu_unittests",
896 "type": "script",
897 "script": "//testing/scripts/run_telemetry_as_googletest.py",
898 "args": [
899 "../../content/test/gpu/run_unittests.py",
900 "-v",
901 ],
902 },
nednguyen9ce21622015-10-08 12:30:48903 "telemetry_perf_unittests": {
904 "label": "//chrome/test:telemetry_perf_unittests",
905 "type": "script",
906 "script": "//testing/scripts/run_telemetry_as_googletest.py",
907 "args": [
nednguyen9ce21622015-10-08 12:30:48908 "../../tools/perf/run_tests",
909 "-v",
910 ],
911 },
eyaichd158d952016-09-02 13:23:41912 "telemetry_perf_tests": {
913 "label": "//chrome/test:telemetry_perf_tests",
914 "type": "script",
915 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
916 "args": [
917 "../../tools/perf/run_benchmark",
918 ],
919 },
Stephen Martinisb6eb4392017-06-14 20:40:25920 "telemetry_perf_webview_tests": {
921 "label": "//chrome/test:telemetry_perf_webview_tests",
922 "type": "script",
923 "script": "//third_party/catapult/devil/devil/android/tools/system_app.py",
924 "args": [
925 "remove",
Stephen Martinis2bb854b2017-06-16 22:30:16926 "--package",
927 "com.android.webview",
928 "com.google.android.webview",
Stephen Martinisb6eb4392017-06-14 20:40:25929 "-v",
930 "--",
Stephen Martinis179506992017-06-16 23:32:48931 "../../testing/scripts/run_telemetry_benchmark_as_googletest.py",
Stephen Martinisb6eb4392017-06-14 20:40:25932 "../../tools/perf/run_benchmark",
933 ],
934 },
nednguyen8365ba52015-11-18 15:52:46935 "telemetry_unittests": {
936 "label": "//chrome/test:telemetry_unittests",
937 "type": "script",
938 "script": "//testing/scripts/run_telemetry_as_googletest.py",
939 "args": [
940 "--xvfb",
nednguyena91919182016-01-13 18:31:53941 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46942 "-v",
nednguyene882052d2016-12-13 12:36:41943 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
944 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
945 "--jobs=1",
nednguyen8365ba52015-11-18 15:52:46946 "--chrome-root",
947 "../../",
948 ],
949 },
Ramin Halavatide8f7f72017-07-10 10:31:38950 "traffic_annotation_auditor_unittests": {
951 "label":
952 "//tools/traffic_annotation/auditor:traffic_annotation_auditor_unittests",
953 "type": "console_test_launcher",
954 },
eyaich7c79b912016-10-29 00:39:25955 "cc_perftests": {
956 "label": "//cc:cc_perftests",
957 "type": "script",
958 "script": "//testing/scripts/run_gtest_perf_test.py",
959 "args": [
960 "cc_perftests",
nednguyen6451d7d2017-05-09 14:37:54961 "--adb-path",
962 "src/third_party/android_tools/sdk/platform-tools/adb"
eyaich7c79b912016-10-29 00:39:25963 ],
964 },
crouleau98e395312017-01-12 01:29:48965 "media_perftests": {
966 "label": "//media:media_perftests",
967 "type": "script",
968 "script": "//testing/scripts/run_gtest_perf_test.py",
969 "args": [
970 "media_perftests",
971 ],
972 },
eyaichd3e023c12016-11-14 22:41:01973 "load_library_perf_tests": {
974 "label": "//chrome/test:load_library_perf_tests",
975 "type": "script",
976 "script": "//testing/scripts/run_gtest_perf_test.py",
977 "args": [
978 "load_library_perf_tests",
979 "--test-launcher-print-test-stdio=always"
980 ],
981 },
982 "tracing_perftests": {
983 "label": "//components/tracing:tracing_perftests",
984 "type": "script",
985 "script": "//testing/scripts/run_gtest_perf_test.py",
986 "args": [
987 "tracing_perftests",
nednguyen6451d7d2017-05-09 14:37:54988 "--test-launcher-print-test-stdio=always",
989 "--adb-path",
990 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:01991 ],
992 },
993 "gpu_perftests": {
994 "label": "//gpu:gpu_perftests",
995 "type": "script",
996 "script": "//testing/scripts/run_gtest_perf_test.py",
997 "args": [
998 "gpu_perftests",
999 "--adb-path",
nednguyen6451d7d2017-05-09 14:37:541000 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:011001 ],
1002 },
1003 "angle_perftests": {
eyaich87225102016-11-15 15:15:171004 "label": "//chrome/test:angle_perftests",
eyaichd3e023c12016-11-14 22:41:011005 "type": "script",
1006 "script": "//testing/scripts/run_gtest_perf_test.py",
1007 "args": [
1008 "angle_perftests",
1009 "--test-launcher-print-test-stdio=always",
1010 "--test-launcher-jobs=1"
1011 ],
1012 },
1013 "performance_browser_tests": {
eyaich87225102016-11-15 15:15:171014 "label": "//chrome/test:performance_browser_tests",
eyaichd3e023c12016-11-14 22:41:011015 "type": "script",
1016 "script": "//testing/scripts/run_gtest_perf_test.py",
1017 "args": [
1018 "performance_browser_tests",
1019 "--test-launcher-print-test-stdio=always",
1020 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
1021 "--test-launcher-jobs=1",
1022 "--enable-gpu"
1023 ],
1024 },
tapted5f112f292016-12-11 23:59:401025 "native_theme_unittests": {
1026 "label": "//ui/native_theme:native_theme_unittests",
1027 "type": "windowed_test_launcher",
1028 },
pkotwicz280f66602015-11-04 02:51:551029 "ui_android_unittests": {
1030 "label": "//ui/android:ui_android_unittests",
1031 "type": "console_test_launcher",
1032 },
dprankea55584f12015-07-22 00:52:471033 "ui_base_unittests": {
1034 "label": "//ui/base:ui_base_unittests",
1035 "type": "windowed_test_launcher",
1036 },
1037 "ui_chromeos_unittests": {
1038 "label": "//ui/chromeos:ui_chromeos_unittests",
maruel44522882016-08-04 17:59:111039 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471040 },
yoshiki8e2ddbb2016-03-10 07:11:221041 "ui_arc_unittests": {
1042 "label": "//ui/arc:ui_arc_unittests",
yoshiki4e9fc102017-05-25 17:46:071043 "type": "windowed_test_launcher",
yoshiki8e2ddbb2016-03-10 07:11:221044 },
dprankecb4a2e242016-09-19 01:13:141045 "ui_junit_tests": {
1046 "label": "//ui/android:ui_junit_tests",
1047 "type": "junit_test",
1048 },
dprankea55584f12015-07-22 00:52:471049 "ui_touch_selection_unittests": {
1050 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:001051 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471052 },
1053 "unit_tests": {
1054 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:231055 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471056 },
1057 "url_unittests": {
1058 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:431059 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471060 },
jbaumand69f1172017-01-10 01:46:491061 "video_decode_accelerator_unittest": {
1062 "label": "//media/gpu:video_decode_accelerator_unittest",
1063 "type": "raw",
1064 "args": [],
1065 },
qyearsley88bc4802016-05-17 18:02:341066 "views_mus_interactive_ui_tests": {
1067 "label": "//ui/views/mus:views_mus_interactive_ui_tests",
1068 "type": "windowed_test_launcher",
1069 },
msw2e3ff862016-02-26 02:20:091070 "views_mus_unittests": {
1071 "label": "//ui/views/mus:views_mus_unittests",
1072 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471073 },
1074 "views_unittests": {
1075 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:101076 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471077 },
kylechara16d2572017-07-10 17:41:321078 "viz_unittests": {
1079 "label": "//components/viz:viz_unittests",
1080 "type": "windowed_test_launcher",
1081 },
Christopher Grant193648b2017-06-07 15:08:361082 "vr_common_unittests": {
Ian Vollick4e26ac322017-07-11 14:58:211083 "label": "//chrome/browser/vr:vr_common_unittests",
bsheedy4b23d0b2016-09-20 23:35:031084 "type": "console_test_launcher",
1085 },
dprankecb4a2e242016-09-19 01:13:141086 "webapk_client_junit_tests": {
1087 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
1088 "type": "junit_test",
1089 },
1090 "webapk_shell_apk_junit_tests": {
dpranke43e6a6d2016-09-19 02:10:241091 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
dprankecb4a2e242016-09-19 01:13:141092 "type": "junit_test",
1093 },
tansell88df42592016-11-15 07:22:591094 "webkit_layout_tests": {
1095 "label": "//:webkit_layout_tests",
1096 "type": "script",
tansell0e6baaf22017-02-16 09:14:531097 "script": "//testing/scripts/run_isolated_script_test.py",
1098 "args": [
1099 "--xvfb",
1100 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1101 "--clobber-old-results",
1102 "--debug-rwt-logging",
1103 "--no-show-results",
1104 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1105 ],
1106 },
1107 "webkit_layout_tests_exparchive": {
1108 "label": "//:webkit_layout_tests_exparchive",
1109 "type": "script",
1110 "script": "//testing/scripts/run_isolated_script_test.py",
tansell88df42592016-11-15 07:22:591111 "args": [
1112 "--xvfb",
1113 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
tansell9ca24bfb2017-02-16 13:56:311114 "--seed", "4",
tansell88df42592016-11-15 07:22:591115 "--no-show-results",
tansell9ca24bfb2017-02-16 13:56:311116 "--full-results-html",
1117 "--clobber-old-results",
1118 "--exit-after-n-failures", "5000",
1119 "--exit-after-n-crashes-or-timeouts", "100",
1120 "--debug-rwt-logging",
tansell88df42592016-11-15 07:22:591121 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1122 ],
1123 },
dprankea55584f12015-07-22 00:52:471124 "webkit_unit_tests": {
Dirk Pranke1b64ac442015-12-10 01:47:021125 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
1126 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471127 },
ctzsmc6d96432017-05-11 05:48:311128 "webview_instrumentation_test_apk": {
1129 "label": "//android_webview/test:webview_instrumentation_test_apk",
1130 "type": "console_test_launcher",
1131 },
dprankea55584f12015-07-22 00:52:471132 "wm_unittests": {
1133 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:001134 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471135 },
1136 "wtf_unittests": {
yutak6fbccaf2017-03-31 07:55:131137 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
Dirk Pranke1b64ac442015-12-10 01:47:021138 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471139 },
etiennep87edf212017-06-28 20:56:501140 "zucchini_unittests": {
rnk954f8222017-06-29 17:51:491141 "label": "//chrome/installer/zucchini:zucchini_unittests",
etiennep87edf212017-06-28 20:56:501142 "type": "console_test_launcher",
1143 },
dprankea55584f12015-07-22 00:52:471144}