blob: 154f73e8279f8a39c2ac16370a512320a091609b [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",
dpranke177c1e22015-07-22 23:07:4382 "type": "raw",
83 "args": [],
dprankea55584f12015-07-22 00:52:4784 },
jbudorick73567ae2016-02-09 00:17:2585 "android_webview_unittests": {
86 "label": "//android_webview/test:android_webview_unittests",
87 "type": "console_test_launcher",
88 },
jmadill9b384b782016-03-16 00:21:3289 "angle_deqp_egl_tests": {
90 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
91 "type": "raw",
92 "args": [],
93 },
cwallez18d5b4e2016-02-05 01:18:2394 "angle_deqp_gles2_tests": {
95 "label": "//third_party/angle/src/tests:angle_deqp_gles2_tests",
96 "type": "raw",
97 "args": [],
98 },
99 "angle_deqp_gles3_tests": {
100 "label": "//third_party/angle/src/tests:angle_deqp_gles3_tests",
101 "type": "raw",
102 "args": [],
103 },
geofflang366f3af12016-12-01 18:08:11104 "angle_deqp_gles31_tests": {
105 "label": "//third_party/angle/src/tests:angle_deqp_gles31_tests",
106 "type": "raw",
107 "args": [],
108 },
dpranke6abd8652015-08-28 03:21:11109 "angle_end2end_tests": {
dprankee35c4f72015-09-04 01:04:12110 "label": "//third_party/angle/src/tests:angle_end2end_tests",
dpranke6abd8652015-08-28 03:21:11111 "type": "raw",
112 "args": [],
113 },
ynovikov55e66c22017-02-16 15:45:37114 "angle_white_box_tests": {
115 "label": "//third_party/angle/src/tests:angle_white_box_tests",
116 "type": "raw",
117 "args": [],
118 },
dprankea55584f12015-07-22 00:52:47119 "angle_unittests": {
dprankee35c4f72015-09-04 01:04:12120 "label": "//third_party/angle/src/tests:angle_unittests",
dpranke177c1e22015-07-22 23:07:43121 "type": "raw",
122 "args": [],
dprankea55584f12015-07-22 00:52:47123 },
124 "app_list_unittests": {
125 "label": "//ui/app_list:app_list_unittests",
dprankea21b31b02015-07-24 21:42:00126 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47127 },
mfomitchevda899d82016-04-15 22:20:37128 "app_list_presenter_unittests": {
129 "label": "//ui/app_list/presenter:app_list_presenter_unittests",
mfomitchev216ff0b2016-04-06 19:45:39130 "type": "windowed_test_launcher",
131 },
dprankea55584f12015-07-22 00:52:47132 "app_shell_unittests": {
133 "label": "//extensions/shell:app_shell_unittests",
dprankea21b31b02015-07-24 21:42:00134 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47135 },
skycf094f672016-09-01 19:40:12136 "ash_content_unittests": {
137 "label": "//ash:ash_content_unittests",
138 "type": "windowed_test_launcher",
139 },
dprankea55584f12015-07-22 00:52:47140 "ash_unittests": {
141 "label": "//ash:ash_unittests",
mswda0133e62016-02-16 20:50:02142 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47143 },
kbr39bc5e6d2015-12-31 00:01:43144 "audio_unittests": {
145 "label": "//media:audio_unittests",
146 "type": "raw",
147 "args": [],
148 },
dprankea55584f12015-07-22 00:52:47149 "aura_unittests": {
150 "label": "//ui/aura:aura_unittests",
dprankea21b31b02015-07-24 21:42:00151 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47152 },
bsheedy84541d552017-04-13 01:24:37153 "motopho_latency_test": {
bsheedya1584812017-04-20 21:35:27154 "label": "//chrome/test/vr/perf:motopho_latency_test",
bsheedy84541d552017-04-13 01:24:37155 "type": "script",
156 "script": "//chrome/test/vr/perf/latency/run_latency_test.py",
157 "args": [
158 "--output-dir=${ISOLATED_OUTDIR}",
159 "-v",
160 ],
161 },
dprankecb4a2e242016-09-19 01:13:14162 "base_junit_tests": {
163 "label": "//base:base_junit_tests",
164 "type": "junit_test",
165 },
dprankea55584f12015-07-22 00:52:47166 "base_unittests": {
167 "label": "//base:base_unittests",
168 "type": "console_test_launcher",
169 },
charliea5daef2bb2016-01-29 00:13:25170 "battor_agent_unittests": {
171 "label": "//tools/battor_agent:battor_agent_unittests",
172 "type": "console_test_launcher",
173 },
dprankea55584f12015-07-22 00:52:47174 "blink_heap_unittests": {
brettw4a6700a2016-09-01 01:24:01175 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
Dirk Pranke49802732015-12-10 01:36:41176 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47177 },
178 "blink_platform_unittests": {
Dirk Pranke49802732015-12-10 01:36:41179 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests",
180 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47181 },
dprankecb4a2e242016-09-19 01:13:14182 "blink_tests": {
183 "label": "//:blink_tests",
184 "type": "additional_compile_target",
185 },
davidben718d5652017-05-10 19:59:21186 "boringssl_crypto_tests": {
187 "label": "//third_party/boringssl:boringssl_crypto_tests",
188 "type": "console_test_launcher",
189 },
190 "boringssl_ssl_tests": {
191 "label": "//third_party/boringssl:boringssl_ssl_tests",
192 "type": "console_test_launcher",
193 },
bpastened9c91b62015-11-17 22:57:42194 "breakpad_unittests": {
195 "label": "//breakpad:breakpad_unittests",
196 "type": "console_test_launcher",
197 },
dprankea55584f12015-07-22 00:52:47198 "browser_tests": {
199 "label": "//chrome/test:browser_tests",
jam66f8afe22015-08-09 04:41:40200 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47201 },
202 "cacheinvalidation_unittests": {
203 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
204 "type": "raw",
205 "args": [
206 "--test-launcher-bot-mode",
207 ],
208 },
mcasasd2f53ea2016-06-24 19:24:27209 "capture_unittests": {
210 "label": "//media/capture:capture_unittests",
211 "type": "windowed_test_launcher",
212 },
kmackay421e3482016-05-16 18:05:01213 "cast_alsa_cma_backend_unittests": {
214 "label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests",
maruel44522882016-08-04 17:59:11215 "type": "console_test_launcher",
kmackay421e3482016-05-16 18:05:01216 },
dprankea55584f12015-07-22 00:52:47217 "cast_base_unittests": {
dprankecb4a2e242016-09-19 01:13:14218 "label": "//chromecast/base:cast_base_unittests",
maruel44522882016-08-04 17:59:11219 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47220 },
221 "cast_crash_unittests": {
222 "label": "//chromecast/crash:cast_crash_unittests",
maruel44522882016-08-04 17:59:11223 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47224 },
dprankecb4a2e242016-09-19 01:13:14225 "cast_media_unittests": {
226 "label": "//chromecast/media:cast_media_unittests",
227 "type": "console_test_launcher",
228 },
229 "cast_shell": {
230 "label": "//chromecast:cast_shell",
231 "type": "additional_compile_target",
232 },
233 "cast_shell_apk": {
234 "label": "//chromecast:cast_shell_apk",
235 "type": "additional_compile_target",
236 },
alokpe3bd5ed2016-11-16 15:57:10237 "cast_shell_browsertests": {
238 "label": "//chromecast:cast_shell_browsertests",
dprankecb4a2e242016-09-19 01:13:14239 "type": "console_test_launcher",
240 },
alokpe3bd5ed2016-11-16 15:57:10241 "cast_shell_unittests": {
242 "label": "//chromecast:cast_shell_unittests",
dpranke9f25f762016-11-15 23:40:36243 "type": "console_test_launcher",
244 },
dprankea55584f12015-07-22 00:52:47245 "cast_unittests": {
dprankea21b31b02015-07-24 21:42:00246 "label": "//media/cast:cast_unittests",
247 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47248 },
249 "cc_unittests": {
250 "label": "//cc:cc_unittests",
dpranke177c1e22015-07-22 23:07:43251 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47252 },
dprankecb4a2e242016-09-19 01:13:14253 "chrome": {
254 "label": "//chrome:chrome",
255 "type": "additional_compile_target",
256 },
grteec2afd2016-02-09 16:56:45257 "chrome_app_unittests": {
258 "label": "//chrome/test:chrome_app_unittests",
259 "type": "console_test_launcher",
260 },
dprankea55584f12015-07-22 00:52:47261 "chrome_elf_unittests": {
262 "label": "//chrome_elf:chrome_elf_unittests",
thakise782a76f2016-02-16 15:47:35263 "type": "raw",
dprankea55584f12015-07-22 00:52:47264 },
dprankecb4a2e242016-09-19 01:13:14265 "chrome_junit_tests": {
266 "label": "//chrome/android:chrome_junit_tests",
267 "type": "junit_test",
268 },
269 "chrome_official_builder": {
270 "label": "//:chrome_official_builder",
271 "type": "additional_compile_target",
272 },
273 "chrome_official_builder_no_unittests": {
274 "label": "//:chrome_official_builder_no_unittests",
275 "type": "additional_compile_target",
276 },
277 "chrome_public_apk": {
278 "label": "//chrome/android:chrome_public_apk",
279 "type": "additional_compile_target",
280 },
jbudoricke3c4f95e2016-04-28 23:17:38281 "chrome_public_test_apk": {
agrieve2e039c22016-04-27 22:57:53282 "label": "//chrome/android:chrome_public_test_apk",
283 "type": "console_test_launcher",
284 },
bsheedy8d420112017-02-23 21:10:45285 "chrome_public_test_vr_apk": {
286 "label": "//chrome/android:chrome_public_test_vr_apk",
287 "type": "console_test_launcher",
288 },
jbudoricke3c4f95e2016-04-28 23:17:38289 "chrome_sync_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53290 "label": "//chrome/android:chrome_sync_shell_test_apk",
291 "type": "console_test_launcher",
292 },
dprankea55584f12015-07-22 00:52:47293 "chromedriver_unittests": {
294 "label": "//chrome/test/chromedriver:chromedriver_unittests",
dpranke1643d222015-07-27 22:22:08295 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47296 },
297 "chromeos_unittests": {
298 "label": "//chromeos:chromeos_unittests",
brettw6df3e8c42016-04-14 21:07:13299 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47300 },
khorimoto050da2c2017-06-16 18:49:36301 "chromeos_components_unittests": {
302 "label": "//chromeos/components:chromeos_components_unittests",
303 "type": "console_test_launcher",
304 },
maruel44522882016-08-04 17:59:11305 "chromevox_tests": {
306 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests",
307 "type": "windowed_test_launcher",
308 },
dprankecb4a2e242016-09-19 01:13:14309 "chromium_builder_asan": {
310 "label": "//:chromium_builder_asan",
311 "type": "additional_compile_target",
312 },
dprankecb4a2e242016-09-19 01:13:14313 "chromium_builder_perf": {
314 "label": "//:chromium_builder_perf",
315 "type": "additional_compile_target",
316 },
317 "chromium_builder_tests": {
318 "label": "//:chromium_builder_tests",
319 "type": "additional_compile_target",
320 },
321 "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",
dprankef497c7962015-07-31 19:46:23472 "type": "raw",
473 "args": [],
dprankea55584f12015-07-22 00:52:47474 },
jochen656a7c92015-12-08 00:56:45475 "gin_unittests": {
476 "label": "//gin:gin_unittests",
477 "type": "console_test_launcher",
478 },
dprankedbdd9d82015-08-12 21:18:18479 "gles2_conform_test": {
480 "label": "//gpu/gles2_conform_support:gles2_conform_test",
481 "type": "console_test_launcher",
482 },
483 "gl_tests": {
484 "label": "//gpu:gl_tests",
485 "type": "raw",
486 "args": [],
487 },
dprankea55584f12015-07-22 00:52:47488 "gl_unittests": {
489 "label": "//ui/gl:gl_unittests",
vmpstrfaa78922016-12-21 02:12:21490 "type": "raw",
kylechared642742016-12-19 21:10:33491 "args": [],
kylechar50abf5a2016-11-29 16:03:07492 },
kylechar39705682017-01-19 14:37:23493 "gl_unittests_ozone": {
494 "label": "//ui/gl:gl_unittests_ozone",
vmpstrfaa78922016-12-21 02:12:21495 "label_type": "group",
496 "type": "windowed_test_launcher",
497 "executable": "gl_unittests",
vmpstrfaa78922016-12-21 02:12:21498 },
dprankea55584f12015-07-22 00:52:47499 "gn_unittests": {
500 "label": "//tools/gn:gn_unittests",
dpranke177c1e22015-07-22 23:07:43501 "type": "raw",
502 "args": [],
dprankea55584f12015-07-22 00:52:47503 },
504 "google_apis_unittests": {
505 "label": "//google_apis:google_apis_unittests",
dpranke358c73c2015-08-25 20:43:30506 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47507 },
markdittmer2ce53ac2016-05-05 16:21:02508 "gpu_ipc_service_unittests": {
509 "label": "//gpu/ipc/service:gpu_ipc_service_unittests",
510 "type": "windowed_test_launcher",
511 },
dprankea55584f12015-07-22 00:52:47512 "gpu_unittests": {
513 "label": "//gpu:gpu_unittests",
dprankef497c7962015-07-31 19:46:23514 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47515 },
dprankecb4a2e242016-09-19 01:13:14516 "headless_lib": {
517 "label": "//headless:headless_lib",
518 "type": "additional_compile_target",
519 },
perezjub8b863a02016-04-15 09:20:00520 "headless_browsertests": {
521 "label": "//headless:headless_browsertests",
522 "type": "console_test_launcher",
523 },
dprankecb4a2e242016-09-19 01:13:14524 "headless_shell": {
525 "label": "//headless:headless_shell",
526 "type": "additional_compile_target",
527 },
528 "headless_tests": {
529 "label": "//headless:headless_tests",
530 "type": "additional_compile_target",
531 },
perezjub8b863a02016-04-15 09:20:00532 "headless_unittests": {
533 "label": "//headless:headless_unittests",
534 "type": "console_test_launcher",
535 },
dprankea55584f12015-07-22 00:52:47536 "installer_util_unittests": {
537 "label": "//chrome/installer/util:installer_util_unittests",
thakis33fc54c2016-02-13 01:51:16538 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47539 },
anantaf2e54a92016-05-28 00:39:16540 "install_static_unittests": {
541 "label": "//chrome/install_static:install_static_unittests",
542 "type": "console_test_launcher",
543 },
dprankea55584f12015-07-22 00:52:47544 "interactive_ui_tests": {
545 "label": "//chrome/test:interactive_ui_tests",
dprankef497c7962015-07-31 19:46:23546 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47547 },
smutb99217a2017-03-02 23:45:24548 "ios_chrome_integration_egtests": {
549 "label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
550 "type": "raw",
551 "args": [],
552 },
baxley491ee982017-03-31 15:17:49553 "ios_chrome_reading_list_egtests": {
554 "label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
555 "type": "raw",
556 "args": [],
557 },
smutb99217a2017-03-02 23:45:24558 "ios_chrome_settings_egtests": {
559 "label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
560 "type": "raw",
561 "args": [],
562 },
563 "ios_chrome_smoke_egtests": {
564 "label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
565 "type": "raw",
566 "args": [],
567 },
568 "ios_chrome_ui_egtests": {
569 "label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
570 "type": "raw",
571 "args": [],
572 },
dprankecb4a2e242016-09-19 01:13:14573 "ios_chrome_unittests": {
sdefresnee51457b2016-12-15 09:11:44574 "label": "//ios/chrome/test:ios_chrome_unittests",
dprankecb4a2e242016-09-19 01:13:14575 "type": "raw",
576 "args": [],
577 },
smutb99217a2017-03-02 23:45:24578 "ios_chrome_web_egtests": {
579 "label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
580 "type": "raw",
581 "args": [],
582 },
dprankecb4a2e242016-09-19 01:13:14583 "ios_net_unittests": {
584 "label": "//ios/net:ios_net_unittests",
585 "type": "raw",
586 "args": [],
587 },
smutb99217a2017-03-02 23:45:24588 "ios_showcase_egtests": {
589 "label": "//ios/showcase:ios_showcase_egtests",
590 "type": "raw",
591 "args": [],
592 },
dprankecb4a2e242016-09-19 01:13:14593 "ios_web_inttests": {
594 "label": "//ios/web:ios_web_inttests",
595 "type": "raw",
596 "args": [],
597 },
smutb99217a2017-03-02 23:45:24598 "ios_web_shell_egtests": {
599 "label": "//ios/web/shell/test:ios_web_shell_egtests",
600 "type": "raw",
601 "args": [],
602 },
dprankecb4a2e242016-09-19 01:13:14603 "ios_web_unittests": {
604 "label": "//ios/web:ios_web_unittests",
605 "type": "raw",
606 "args": [],
607 },
dprankea55584f12015-07-22 00:52:47608 "ipc_tests": {
609 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43610 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47611 },
612 "jingle_unittests": {
613 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23614 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47615 },
dprankecb4a2e242016-09-19 01:13:14616 "junit_unit_tests": {
617 "label": "//testing/android/junit:junit_unit_tests",
618 "type": "junit_test",
619 },
dprankea55584f12015-07-22 00:52:47620 "keyboard_unittests": {
621 "label": "//ui/keyboard:keyboard_unittests",
maruel44522882016-08-04 17:59:11622 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47623 },
mfomitchevee01a832017-04-18 20:55:02624 "latency_unittests": {
625 "label": "//ui/latency:latency_unittests",
626 "type": "console_test_launcher",
627 },
ergf1f689f2016-03-22 00:51:20628 "leveldb_service_unittests": {
629 "label": "//components/leveldb:leveldb_service_unittests",
630 "type": "console_test_launcher",
631 },
dpranke5e233662016-02-13 01:14:07632 # See http://crbug.com/585151
dprankecb4a2e242016-09-19 01:13:14633 "libaddressinput_unittests": {
634 "label": "//third_party/libaddressinput:libaddressinput_unittests",
635 "type": "console_test_launcher",
636 },
kjellanderd5fe9bf2017-04-13 09:05:02637 "libjingle_xmpp_unittests": {
638 "label": "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
639 "type": "console_test_launcher",
640 },
phoglund2357e822016-03-21 15:58:05641 # See http://crbug.com/585151
dprankecb4a2e242016-09-19 01:13:14642 "libphonenumber_unittests": {
643 "label": "//third_party/libphonenumber:libphonenumber_unittests",
644 "type": "console_test_launcher",
645 },
zengster7ec9ff52016-08-10 00:18:41646 "mac_installer_unittests": {
647 "label": "//chrome/installer/mac/app:mac_installer_unittests",
648 "type": "console_test_launcher",
649 },
dprankecb4a2e242016-09-19 01:13:14650 "mash:all" : {
651 "label": "//mash:all",
652 "type": "additional_compile_target",
653 },
kylechar309364b2017-02-10 18:51:30654 "mash_browser_tests": {
655 "label": "//chrome/test:mash_browser_tests",
656 "label_type": "group",
657 "type": "windowed_test_launcher",
658 "executable": "browser_tests",
659 "args": [
660 "--run-in-mash",
kylechar309364b2017-02-10 18:51:30661 ],
662 },
dprankea55584f12015-07-22 00:52:47663 "media_unittests": {
664 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23665 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47666 },
xhwang9c958fd2016-12-05 23:17:16667 "media_service_unittests": {
668 "label": "//media/mojo/services:media_service_unittests",
bena5d1cd42016-04-29 22:59:53669 "type": "console_test_launcher",
670 },
hubbe2dc5a592015-09-23 23:29:31671 "media_blink_unittests": {
672 "label": "//media/blink:media_blink_unittests",
673 "type": "windowed_test_launcher",
674 },
cliffordcheng24894e8a2016-12-05 22:31:11675 "media_router_perf_tests": {
676 "label": "//chrome/test/media_router:media_router_perf_tests",
677 "type": "script",
cliffordcheng28deea192017-01-14 04:21:50678 "script": "//chrome/test/media_router/telemetry/run_benchmark.py",
cliffordcheng24894e8a2016-12-05 22:31:11679 "args": [
680 "--browser=release",
681 "--also-run-disabled-tests",
682 "-v",
683 "--use-live-sites",
684 "--output-format=chartjson",
685 "--output-dir=${ISOLATED_OUTDIR}",
686 ],
687 },
cliffordchengf7655ed2016-11-29 03:07:55688 "media_router_tests": {
689 "label": "//chrome/test/media_router:media_router_tests",
690 "type": "script",
691 "script": "//chrome/test/media_router/internal/media_router_tests.py",
692 "args": [
693 "--extension",
694 "mr_extension/",
695 "--test_binary",
696 "./browser_tests",
697 ],
698 },
martinissee599af2017-02-06 23:19:43699 "microdump_stackwalk" : {
700 "label": "//breakpad:microdump_stackwalk",
701 "type": "additional_compile_target",
702 },
dprankea55584f12015-07-22 00:52:47703 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30704 "label": "//media/midi:midi_unittests",
705 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47706 },
dprankecb4a2e242016-09-19 01:13:14707 "mini_installer": {
708 "label": "//chrome/installer/mini_installer:mini_installer",
709 "type": "additional_compile_target",
710 },
dprankea55584f12015-07-22 00:52:47711 "mojo_common_unittests": {
712 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23713 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47714 },
yzshen1d7a11c2016-01-27 00:16:32715 "mojo_js_unittests": {
alokp210e57b22017-01-20 20:36:26716 "label": "//mojo/edk/js/tests:mojo_js_unittests",
yzshen1d7a11c2016-01-27 00:16:32717 "type": "console_test_launcher",
718 },
dprankea55584f12015-07-22 00:52:47719 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08720 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23721 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47722 },
dprankea55584f12015-07-22 00:52:47723 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08724 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35725 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47726 },
dprankea55584f12015-07-22 00:52:47727 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08728 "label": "//mojo/edk/system:mojo_system_unittests",
sammc98ecd4a2016-04-29 01:59:21729 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47730 },
sammc9b709032016-08-12 00:35:24731 "mojo_test_apk": {
732 "label": "//mojo/android:mojo_test_apk",
733 "type": "console_test_launcher",
734 },
jonross5e09768c2017-04-21 20:39:34735 "mus_browser_tests": {
736 "label": "//chrome/test:mus_browser_tests",
737 "label_type": "group",
738 "type": "windowed_test_launcher",
739 "executable": "browser_tests",
740 "args": [
741 "--run-in-mus",
742 "--service-overrides=../../chrome/app/mash/mash_service_overrides.json",
743 ],
744 },
dprankea55584f12015-07-22 00:52:47745 "message_center_unittests": {
746 "label": "//ui/message_center:message_center_unittests",
dpranke94c6fb22016-06-10 01:55:08747 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47748 },
sky130827232015-11-23 20:41:08749 "mash_unittests": {
750 "label": "//mash:mash_unittests",
sky57052d022016-04-29 17:18:23751 "type": "windowed_test_launcher",
sky97b65592015-11-02 20:08:25752 },
maruel44522882016-08-04 17:59:11753 "nacl_helper_nonsfi_unittests": {
754 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
755 "type": "raw",
756 "args": [],
757 },
dprankea55584f12015-07-22 00:52:47758 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13759 "label": "//components/nacl/loader:nacl_loader_unittests",
dprankef497c7962015-07-31 19:46:23760 "type": "raw",
761 "args": [],
dprankea55584f12015-07-22 00:52:47762 },
dprankecb4a2e242016-09-19 01:13:14763 "net_junit_tests": {
764 "label": "//net/android:net_junit_tests",
765 "type": "junit_test",
766 },
xunjielibdefc4f2017-06-07 18:58:59767 "net_perftests": {
768 "label": "//net:net_perftests",
769 "type": "script",
770 "script": "//testing/scripts/run_gtest_perf_test.py",
771 "args": [
772 "net_perftests",
773 ],
774 },
dprankea55584f12015-07-22 00:52:47775 "net_unittests": {
776 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23777 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47778 },
dprankecb4a2e242016-09-19 01:13:14779 "next_version_mini_installer": {
780 "label": "//chrome/installer/mini_installer:next_version_mini_installer",
781 "type": "additional_compile_target",
782 },
dprankea55584f12015-07-22 00:52:47783 "ozone_unittests": {
784 "label": "//ui/ozone:ozone_unittests",
maruel44522882016-08-04 17:59:11785 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47786 },
kylechar4fab9212016-08-24 21:09:10787 "ozone_gl_unittests": {
788 "label": "//ui/ozone/gl:ozone_gl_unittests",
789 "type": "console_test_launcher",
790 },
art-snakea84bce92016-10-27 19:16:49791 "pdf_unittests": {
792 "label": "//pdf:pdf_unittests",
793 "type": "console_test_launcher",
794 },
machenbach5da31892016-09-19 15:06:42795 "pdfium_test": {
796 "label": "//third_party/pdfium/samples:pdfium_test",
797 "type": "additional_compile_target",
798 },
machenbach5da31892016-09-19 15:06:42799 "postmortem-metadata": {
800 "label": "//v8:postmortem-metadata",
801 "type": "additional_compile_target",
802 },
dprankea55584f12015-07-22 00:52:47803 "ppapi_unittests": {
804 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48805 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47806 },
807 "printing_unittests": {
808 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23809 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47810 },
811 "remoting_unittests": {
812 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23813 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47814 },
dprankea55584f12015-07-22 00:52:47815 "sandbox_linux_unittests": {
816 "label": "//sandbox/linux:sandbox_linux_unittests",
dpranke177c1e22015-07-22 23:07:43817 "type": "raw",
818 "args": [],
dprankea55584f12015-07-22 00:52:47819 },
820 "sandbox_mac_unittests": {
821 "label": "//sandbox/mac:sandbox_mac_unittests",
rsesek172b7352016-05-10 22:27:26822 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47823 },
824 "sbox_integration_tests": {
825 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16826 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47827 },
828 "sbox_unittests": {
829 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16830 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47831 },
832 "sbox_validation_tests": {
833 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16834 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47835 },
bendb45a532016-10-15 01:22:09836 "service_manager_unittests": {
rockot734fb662016-10-15 16:41:30837 "label": "//services/service_manager/tests:service_manager_unittests",
bendb45a532016-10-15 01:22:09838 "type": "console_test_launcher",
839 },
ke.heaf8ead22017-05-13 03:54:30840 "service_junit_tests": {
841 "label": "//services:service_junit_tests",
842 "type": "junit_test",
843 },
ergcd559ca2017-05-26 23:43:38844 "services_unittests": {
845 "label": "//services:services_unittests",
ergf4938cd2017-05-19 01:42:08846 "type": "windowed_test_launcher",
rockot8cdd37a2017-01-28 02:53:31847 },
dprankea55584f12015-07-22 00:52:47848 "setup_unittests": {
849 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59850 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47851 },
852 "skia_unittests": {
853 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43854 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47855 },
eseckler7233c1a72017-01-25 15:07:54856 "snapshot_unittests": {
857 "label": "//ui/snapshot:snapshot_unittests",
858 "type": "windowed_test_launcher",
859 },
dprankea55584f12015-07-22 00:52:47860 "sql_unittests": {
861 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43862 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47863 },
pwnall008c0272016-10-14 16:54:04864 "storage_unittests": {
pwnall9f1622a2017-04-21 09:39:02865 "label": "//storage:storage_unittests",
pwnall008c0272016-10-14 16:54:04866 "type": "console_test_launcher",
867 },
sugoic9c93b52017-01-12 16:11:02868 "swiftshader_unittests": {
869 "label": "//third_party/swiftshader/tests/unittests:swiftshader_unittests",
870 "type": "raw",
871 "args": [],
872 },
dprankea55584f12015-07-22 00:52:47873 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23874 "label": "//chrome/test:sync_integration_tests",
875 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47876 },
dprankecb4a2e242016-09-19 01:13:14877 "system_webview_apk": {
878 "label": "//android_webview:system_webview_apk",
879 "type": "additional_compile_target",
880 },
kbr48321ca02016-06-23 03:24:08881 "telemetry_gpu_integration_test": {
882 "label": "//chrome/test:telemetry_gpu_integration_test",
883 "type": "script",
884 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
885 "args": [
886 "../../content/test/gpu/run_gpu_integration_test.py",
887 ],
888 },
nednguyenfbee71a62015-10-01 12:41:13889 "telemetry_gpu_unittests": {
890 "label": "//chrome/test:telemetry_gpu_unittests",
891 "type": "script",
892 "script": "//testing/scripts/run_telemetry_as_googletest.py",
893 "args": [
894 "../../content/test/gpu/run_unittests.py",
895 "-v",
896 ],
897 },
nednguyen9ce21622015-10-08 12:30:48898 "telemetry_perf_unittests": {
899 "label": "//chrome/test:telemetry_perf_unittests",
900 "type": "script",
901 "script": "//testing/scripts/run_telemetry_as_googletest.py",
902 "args": [
nednguyen9ce21622015-10-08 12:30:48903 "../../tools/perf/run_tests",
904 "-v",
905 ],
906 },
eyaichd158d952016-09-02 13:23:41907 "telemetry_perf_tests": {
908 "label": "//chrome/test:telemetry_perf_tests",
909 "type": "script",
910 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
911 "args": [
912 "../../tools/perf/run_benchmark",
913 ],
914 },
Stephen Martinisb6eb4392017-06-14 20:40:25915 "telemetry_perf_webview_tests": {
916 "label": "//chrome/test:telemetry_perf_webview_tests",
917 "type": "script",
918 "script": "//third_party/catapult/devil/devil/android/tools/system_app.py",
919 "args": [
920 "remove",
Stephen Martinis2bb854b2017-06-16 22:30:16921 "--package",
922 "com.android.webview",
923 "com.google.android.webview",
Stephen Martinisb6eb4392017-06-14 20:40:25924 "-v",
925 "--",
Stephen Martinis179506992017-06-16 23:32:48926 "../../testing/scripts/run_telemetry_benchmark_as_googletest.py",
Stephen Martinisb6eb4392017-06-14 20:40:25927 "../../tools/perf/run_benchmark",
928 ],
929 },
nednguyen8365ba52015-11-18 15:52:46930 "telemetry_unittests": {
931 "label": "//chrome/test:telemetry_unittests",
932 "type": "script",
933 "script": "//testing/scripts/run_telemetry_as_googletest.py",
934 "args": [
935 "--xvfb",
nednguyena91919182016-01-13 18:31:53936 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46937 "-v",
nednguyene882052d2016-12-13 12:36:41938 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
939 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
940 "--jobs=1",
nednguyen8365ba52015-11-18 15:52:46941 "--chrome-root",
942 "../../",
943 ],
944 },
eyaich7c79b912016-10-29 00:39:25945 "cc_perftests": {
946 "label": "//cc:cc_perftests",
947 "type": "script",
948 "script": "//testing/scripts/run_gtest_perf_test.py",
949 "args": [
950 "cc_perftests",
nednguyen6451d7d2017-05-09 14:37:54951 "--adb-path",
952 "src/third_party/android_tools/sdk/platform-tools/adb"
eyaich7c79b912016-10-29 00:39:25953 ],
954 },
crouleau98e395312017-01-12 01:29:48955 "media_perftests": {
956 "label": "//media:media_perftests",
957 "type": "script",
958 "script": "//testing/scripts/run_gtest_perf_test.py",
959 "args": [
960 "media_perftests",
961 ],
962 },
eyaichd3e023c12016-11-14 22:41:01963 "load_library_perf_tests": {
964 "label": "//chrome/test:load_library_perf_tests",
965 "type": "script",
966 "script": "//testing/scripts/run_gtest_perf_test.py",
967 "args": [
968 "load_library_perf_tests",
969 "--test-launcher-print-test-stdio=always"
970 ],
971 },
972 "tracing_perftests": {
973 "label": "//components/tracing:tracing_perftests",
974 "type": "script",
975 "script": "//testing/scripts/run_gtest_perf_test.py",
976 "args": [
977 "tracing_perftests",
nednguyen6451d7d2017-05-09 14:37:54978 "--test-launcher-print-test-stdio=always",
979 "--adb-path",
980 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:01981 ],
982 },
983 "gpu_perftests": {
984 "label": "//gpu:gpu_perftests",
985 "type": "script",
986 "script": "//testing/scripts/run_gtest_perf_test.py",
987 "args": [
988 "gpu_perftests",
989 "--adb-path",
nednguyen6451d7d2017-05-09 14:37:54990 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:01991 ],
992 },
993 "angle_perftests": {
eyaich87225102016-11-15 15:15:17994 "label": "//chrome/test:angle_perftests",
eyaichd3e023c12016-11-14 22:41:01995 "type": "script",
996 "script": "//testing/scripts/run_gtest_perf_test.py",
997 "args": [
998 "angle_perftests",
999 "--test-launcher-print-test-stdio=always",
1000 "--test-launcher-jobs=1"
1001 ],
1002 },
1003 "performance_browser_tests": {
eyaich87225102016-11-15 15:15:171004 "label": "//chrome/test:performance_browser_tests",
eyaichd3e023c12016-11-14 22:41:011005 "type": "script",
1006 "script": "//testing/scripts/run_gtest_perf_test.py",
1007 "args": [
1008 "performance_browser_tests",
1009 "--test-launcher-print-test-stdio=always",
1010 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
1011 "--test-launcher-jobs=1",
1012 "--enable-gpu"
1013 ],
1014 },
tapted5f112f292016-12-11 23:59:401015 "native_theme_unittests": {
1016 "label": "//ui/native_theme:native_theme_unittests",
1017 "type": "windowed_test_launcher",
1018 },
pkotwicz280f66602015-11-04 02:51:551019 "ui_android_unittests": {
1020 "label": "//ui/android:ui_android_unittests",
1021 "type": "console_test_launcher",
1022 },
dprankea55584f12015-07-22 00:52:471023 "ui_base_unittests": {
1024 "label": "//ui/base:ui_base_unittests",
1025 "type": "windowed_test_launcher",
1026 },
1027 "ui_chromeos_unittests": {
1028 "label": "//ui/chromeos:ui_chromeos_unittests",
maruel44522882016-08-04 17:59:111029 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471030 },
yoshiki8e2ddbb2016-03-10 07:11:221031 "ui_arc_unittests": {
1032 "label": "//ui/arc:ui_arc_unittests",
yoshiki4e9fc102017-05-25 17:46:071033 "type": "windowed_test_launcher",
yoshiki8e2ddbb2016-03-10 07:11:221034 },
dprankecb4a2e242016-09-19 01:13:141035 "ui_junit_tests": {
1036 "label": "//ui/android:ui_junit_tests",
1037 "type": "junit_test",
1038 },
dprankea55584f12015-07-22 00:52:471039 "ui_touch_selection_unittests": {
1040 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:001041 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471042 },
1043 "unit_tests": {
1044 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:231045 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471046 },
1047 "url_unittests": {
1048 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:431049 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471050 },
jbaumand69f1172017-01-10 01:46:491051 "video_decode_accelerator_unittest": {
1052 "label": "//media/gpu:video_decode_accelerator_unittest",
1053 "type": "raw",
1054 "args": [],
1055 },
qyearsley88bc4802016-05-17 18:02:341056 "views_mus_interactive_ui_tests": {
1057 "label": "//ui/views/mus:views_mus_interactive_ui_tests",
1058 "type": "windowed_test_launcher",
1059 },
msw2e3ff862016-02-26 02:20:091060 "views_mus_unittests": {
1061 "label": "//ui/views/mus:views_mus_unittests",
1062 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471063 },
1064 "views_unittests": {
1065 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:101066 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471067 },
Christopher Grant193648b2017-06-07 15:08:361068 "vr_common_unittests": {
1069 "label": "//chrome/browser/android/vr_shell:vr_common_unittests",
bsheedy4b23d0b2016-09-20 23:35:031070 "type": "console_test_launcher",
1071 },
dprankecb4a2e242016-09-19 01:13:141072 "webapk_client_junit_tests": {
1073 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
1074 "type": "junit_test",
1075 },
1076 "webapk_shell_apk_junit_tests": {
dpranke43e6a6d2016-09-19 02:10:241077 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
dprankecb4a2e242016-09-19 01:13:141078 "type": "junit_test",
1079 },
tansell88df42592016-11-15 07:22:591080 "webkit_layout_tests": {
1081 "label": "//:webkit_layout_tests",
1082 "type": "script",
tansell0e6baaf22017-02-16 09:14:531083 "script": "//testing/scripts/run_isolated_script_test.py",
1084 "args": [
1085 "--xvfb",
1086 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1087 "--clobber-old-results",
1088 "--debug-rwt-logging",
1089 "--no-show-results",
1090 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1091 ],
1092 },
1093 "webkit_layout_tests_exparchive": {
1094 "label": "//:webkit_layout_tests_exparchive",
1095 "type": "script",
1096 "script": "//testing/scripts/run_isolated_script_test.py",
tansell88df42592016-11-15 07:22:591097 "args": [
1098 "--xvfb",
1099 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
tansell9ca24bfb2017-02-16 13:56:311100 "--seed", "4",
tansell88df42592016-11-15 07:22:591101 "--no-show-results",
tansell9ca24bfb2017-02-16 13:56:311102 "--full-results-html",
1103 "--clobber-old-results",
1104 "--exit-after-n-failures", "5000",
1105 "--exit-after-n-crashes-or-timeouts", "100",
1106 "--debug-rwt-logging",
tansell88df42592016-11-15 07:22:591107 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1108 ],
1109 },
dprankea55584f12015-07-22 00:52:471110 "webkit_unit_tests": {
Dirk Pranke1b64ac442015-12-10 01:47:021111 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
1112 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471113 },
ctzsmc6d96432017-05-11 05:48:311114 "webview_instrumentation_test_apk": {
1115 "label": "//android_webview/test:webview_instrumentation_test_apk",
1116 "type": "console_test_launcher",
1117 },
dprankea55584f12015-07-22 00:52:471118 "wm_unittests": {
1119 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:001120 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471121 },
1122 "wtf_unittests": {
yutak6fbccaf2017-03-31 07:55:131123 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
Dirk Pranke1b64ac442015-12-10 01:47:021124 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471125 },
dprankea55584f12015-07-22 00:52:471126}