blob: 04f675811f9093e1689185e724c556e5c93cc847 [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": [
bsheedy84541d552017-04-13 01:24:37156 "-v",
157 ],
158 },
bsheedy846c5d242017-06-26 17:38:48159 "vrcore_fps_test": {
160 "label": "//chrome/test/vr/perf:vrcore_fps_test",
161 "type": "script",
162 "script": "//chrome/test/vr/perf/vrcore_fps/run_vrcore_fps_test.py",
163 "args": [
bsheedy846c5d242017-06-26 17:38:48164 "-v",
165 ],
166 },
bsheedyfa2a2f22017-08-24 23:51:56167 "vr_perf_tests": {
168 "label": "//tools/perf/contrib/vr_benchmarks:vr_perf_tests",
169 "type": "script",
170 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
171 "args": [
172 "../../tools/perf/run_benchmark",
173 ],
174 },
dprankecb4a2e242016-09-19 01:13:14175 "base_junit_tests": {
176 "label": "//base:base_junit_tests",
177 "type": "junit_test",
178 },
dprankea55584f12015-07-22 00:52:47179 "base_unittests": {
180 "label": "//base:base_unittests",
181 "type": "console_test_launcher",
182 },
charliea5daef2bb2016-01-29 00:13:25183 "battor_agent_unittests": {
184 "label": "//tools/battor_agent:battor_agent_unittests",
185 "type": "console_test_launcher",
186 },
dprankea55584f12015-07-22 00:52:47187 "blink_heap_unittests": {
brettw4a6700a2016-09-01 01:24:01188 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
Dirk Pranke49802732015-12-10 01:36:41189 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47190 },
191 "blink_platform_unittests": {
Dirk Pranke49802732015-12-10 01:36:41192 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests",
193 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47194 },
dprankecb4a2e242016-09-19 01:13:14195 "blink_tests": {
196 "label": "//:blink_tests",
197 "type": "additional_compile_target",
198 },
davidben718d5652017-05-10 19:59:21199 "boringssl_crypto_tests": {
200 "label": "//third_party/boringssl:boringssl_crypto_tests",
201 "type": "console_test_launcher",
202 },
203 "boringssl_ssl_tests": {
204 "label": "//third_party/boringssl:boringssl_ssl_tests",
205 "type": "console_test_launcher",
206 },
bpastened9c91b62015-11-17 22:57:42207 "breakpad_unittests": {
Mark Mentovaiebb9ddd62017-09-25 17:24:41208 "label": "//third_party/breakpad:breakpad_unittests",
bpastened9c91b62015-11-17 22:57:42209 "type": "console_test_launcher",
210 },
dprankea55584f12015-07-22 00:52:47211 "browser_tests": {
212 "label": "//chrome/test:browser_tests",
jam66f8afe22015-08-09 04:41:40213 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47214 },
215 "cacheinvalidation_unittests": {
216 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
pcc9c98ed22017-06-29 22:16:11217 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47218 },
mcasasd2f53ea2016-06-24 19:24:27219 "capture_unittests": {
220 "label": "//media/capture:capture_unittests",
221 "type": "windowed_test_launcher",
222 },
kmackay421e3482016-05-16 18:05:01223 "cast_alsa_cma_backend_unittests": {
224 "label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests",
maruel44522882016-08-04 17:59:11225 "type": "console_test_launcher",
kmackay421e3482016-05-16 18:05:01226 },
dprankea55584f12015-07-22 00:52:47227 "cast_base_unittests": {
dprankecb4a2e242016-09-19 01:13:14228 "label": "//chromecast/base:cast_base_unittests",
maruel44522882016-08-04 17:59:11229 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47230 },
231 "cast_crash_unittests": {
232 "label": "//chromecast/crash:cast_crash_unittests",
maruel44522882016-08-04 17:59:11233 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47234 },
Mike Bjorged479891e2017-07-27 23:12:16235 "cast_graphics_unittests": {
236 "label": "//chromecast/graphics:cast_graphics_unittests",
237 "type": "console_test_launcher",
238 },
dprankecb4a2e242016-09-19 01:13:14239 "cast_media_unittests": {
240 "label": "//chromecast/media:cast_media_unittests",
241 "type": "console_test_launcher",
242 },
243 "cast_shell": {
244 "label": "//chromecast:cast_shell",
245 "type": "additional_compile_target",
246 },
247 "cast_shell_apk": {
248 "label": "//chromecast:cast_shell_apk",
249 "type": "additional_compile_target",
250 },
alokpe3bd5ed2016-11-16 15:57:10251 "cast_shell_browsertests": {
252 "label": "//chromecast:cast_shell_browsertests",
dprankecb4a2e242016-09-19 01:13:14253 "type": "console_test_launcher",
254 },
alokpe3bd5ed2016-11-16 15:57:10255 "cast_shell_unittests": {
256 "label": "//chromecast:cast_shell_unittests",
dpranke9f25f762016-11-15 23:40:36257 "type": "console_test_launcher",
258 },
dprankea55584f12015-07-22 00:52:47259 "cast_unittests": {
dprankea21b31b02015-07-24 21:42:00260 "label": "//media/cast:cast_unittests",
261 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47262 },
263 "cc_unittests": {
264 "label": "//cc:cc_unittests",
dpranke177c1e22015-07-22 23:07:43265 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47266 },
dprankecb4a2e242016-09-19 01:13:14267 "chrome": {
268 "label": "//chrome:chrome",
269 "type": "additional_compile_target",
270 },
grteec2afd2016-02-09 16:56:45271 "chrome_app_unittests": {
272 "label": "//chrome/test:chrome_app_unittests",
273 "type": "console_test_launcher",
274 },
Penny MacNeila9753d02017-10-02 16:57:45275 "chrome_elf_import_unittests": {
276 "label": "//chrome_elf:chrome_elf_import_unittests",
277 "type": "raw",
278 },
dprankea55584f12015-07-22 00:52:47279 "chrome_elf_unittests": {
280 "label": "//chrome_elf:chrome_elf_unittests",
thakise782a76f2016-02-16 15:47:35281 "type": "raw",
dprankea55584f12015-07-22 00:52:47282 },
dprankecb4a2e242016-09-19 01:13:14283 "chrome_junit_tests": {
284 "label": "//chrome/android:chrome_junit_tests",
285 "type": "junit_test",
286 },
287 "chrome_official_builder": {
288 "label": "//:chrome_official_builder",
289 "type": "additional_compile_target",
290 },
291 "chrome_official_builder_no_unittests": {
292 "label": "//:chrome_official_builder_no_unittests",
293 "type": "additional_compile_target",
294 },
295 "chrome_public_apk": {
296 "label": "//chrome/android:chrome_public_apk",
297 "type": "additional_compile_target",
298 },
jbudoricke3c4f95e2016-04-28 23:17:38299 "chrome_public_test_apk": {
agrieve2e039c22016-04-27 22:57:53300 "label": "//chrome/android:chrome_public_test_apk",
301 "type": "console_test_launcher",
302 },
bsheedy8d420112017-02-23 21:10:45303 "chrome_public_test_vr_apk": {
304 "label": "//chrome/android:chrome_public_test_vr_apk",
305 "type": "console_test_launcher",
306 },
jbudoricke3c4f95e2016-04-28 23:17:38307 "chrome_sync_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53308 "label": "//chrome/android:chrome_sync_shell_test_apk",
309 "type": "console_test_launcher",
310 },
dprankea55584f12015-07-22 00:52:47311 "chromedriver_unittests": {
312 "label": "//chrome/test/chromedriver:chromedriver_unittests",
dpranke1643d222015-07-27 22:22:08313 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47314 },
315 "chromeos_unittests": {
316 "label": "//chromeos:chromeos_unittests",
brettw6df3e8c42016-04-14 21:07:13317 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47318 },
khorimoto050da2c2017-06-16 18:49:36319 "chromeos_components_unittests": {
320 "label": "//chromeos/components:chromeos_components_unittests",
321 "type": "console_test_launcher",
322 },
maruel44522882016-08-04 17:59:11323 "chromevox_tests": {
324 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests",
325 "type": "windowed_test_launcher",
326 },
dprankecb4a2e242016-09-19 01:13:14327 "chromium_builder_asan": {
328 "label": "//:chromium_builder_asan",
329 "type": "additional_compile_target",
330 },
dprankecb4a2e242016-09-19 01:13:14331 "chromium_builder_perf": {
332 "label": "//:chromium_builder_perf",
333 "type": "additional_compile_target",
334 },
dprankecb4a2e242016-09-19 01:13:14335 "chromiumos_preflight": {
336 "label": "//:chromiumos_preflight",
337 "type": "additional_compile_target",
338 },
fgorski7c52dca2017-05-15 22:15:20339 "components_background_task_scheduler_junit_tests": {
340 "label": "//components/background_task_scheduler:components_background_task_scheduler_junit_tests",
341 "type": "junit_test",
342 },
dprankea55584f12015-07-22 00:52:47343 "components_browsertests": {
344 "label": "//components:components_browsertests",
dpranke1643d222015-07-27 22:22:08345 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47346 },
peter943bc63a2017-02-28 01:40:22347 "components_gcm_driver_junit_tests": {
348 "label": "//components/gcm_driver/android:components_gcm_driver_junit_tests",
349 "type": "junit_test",
350 },
dprankecb4a2e242016-09-19 01:13:14351 "components_invalidation_impl_junit_tests": {
352 "label": "//components/invalidation/impl:components_invalidation_impl_junit_tests",
353 "type": "junit_test",
354 },
355 "components_policy_junit_tests": {
356 "label": "//components/policy/android:components_policy_junit_tests",
357 "type": "junit_test",
358 },
dprankea55584f12015-07-22 00:52:47359 "components_unittests": {
360 "label": "//components:components_unittests",
dpranke1643d222015-07-27 22:22:08361 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47362 },
aberent1b0987f2017-01-25 09:25:49363 "components_variations_junit_tests": {
364 "label": "//components/variations/android:components_variations_junit_tests",
365 "type": "junit_test",
366 },
dprankecb4a2e242016-09-19 01:13:14367 "components_web_restrictions_junit_tests": {
368 "label": "//components/web_restrictions:components_web_restrictions_junit_tests",
369 "type": "junit_test",
370 },
dprankea55584f12015-07-22 00:52:47371 "compositor_unittests": {
372 "label": "//ui/compositor:compositor_unittests",
dpranke177c1e22015-07-22 23:07:43373 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47374 },
375 "content_browsertests": {
376 "label": "//content/test:content_browsertests",
dpranke1643d222015-07-27 22:22:08377 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47378 },
dprankecb4a2e242016-09-19 01:13:14379 "content_junit_tests": {
380 "label": "//content/public/android:content_junit_tests",
381 "type": "junit_test",
382 },
jochen0426747e2017-02-09 17:01:19383 "content_shell_crash_test": {
384 "label": "//content/shell:content_shell_crash_test",
385 "type": "script",
386 "script": "//testing/scripts/content_shell_crash_test.py",
387 },
jbudoricke3c4f95e2016-04-28 23:17:38388 "content_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53389 "label": "//content/shell/android:content_shell_test_apk",
390 "type": "console_test_launcher",
391 },
dprankea55584f12015-07-22 00:52:47392 "content_unittests": {
393 "label": "//content/test:content_unittests",
dpranke1643d222015-07-27 22:22:08394 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47395 },
396 "courgette_unittests": {
397 "label": "//courgette:courgette_unittests",
thakis6e0c3f82016-02-11 04:33:59398 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47399 },
dprankecb4a2e242016-09-19 01:13:14400 "cronet_package": {
401 "label": "//components/cronet/android:cronet_package",
402 "type": "additional_compile_target",
403 },
John Budorick23704fa2017-08-24 14:42:34404 "cronet_sample_test_apk": {
405 "label": "//components/cronet/android:cronet_sample_test_apk",
406 "type": "console_test_launcher",
407 },
408 "cronet_smoketests_missing_native_library_instrumentation_apk": {
409 "label": "//components/cronet/android:cronet_smoketests_missing_native_library_instrumentation_apk",
410 "type": "console_test_launcher",
411 },
412 "cronet_smoketests_platform_only_instrumentation_apk": {
413 "label": "//components/cronet/android:cronet_smoketests_platform_only_instrumentation_apk",
414 "type": "console_test_launcher",
415 },
gcasto1821cea42016-10-05 17:50:45416 "cronet_test": {
gcasto25c8da8e2016-10-26 23:42:40417 "label": "//components/cronet/ios/test:cronet_test",
gcasto1821cea42016-10-05 17:50:45418 "type": "raw",
419 },
dprankecb4a2e242016-09-19 01:13:14420 "cronet_test_instrumentation_apk": {
421 "label": "//components/cronet/android:cronet_test_instrumentation_apk",
422 "type": "additional_compile_target",
423 },
John Budorick23704fa2017-08-24 14:42:34424 "cronet_unittests": {
425 "label": "//components/cronet/android:cronet_unittests",
426 "type": "console_test_launcher",
427 },
dprankea55584f12015-07-22 00:52:47428 "crypto_unittests": {
429 "label": "//crypto:crypto_unittests",
dpranke1643d222015-07-27 22:22:08430 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47431 },
432 "dbus_unittests": {
433 "label": "//dbus:dbus_unittests",
maruel44522882016-08-04 17:59:11434 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47435 },
mcasaseddfbeb2017-05-10 04:47:49436 "device_junit_tests": {
437 "label": "//device:device_junit_tests",
438 "type": "junit_test",
439 },
dprankea55584f12015-07-22 00:52:47440 "device_unittests": {
441 "label": "//device:device_unittests",
dpranke1643d222015-07-27 22:22:08442 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47443 },
chenwilliam2ee4d24c92016-11-21 20:41:44444 "devtools_closure_compile": {
445 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile",
446 "type": "script",
chenwilliam56a90382016-12-09 02:16:28447 "script": "//testing/scripts/run_devtools_check.py",
chenwilliam2ee4d24c92016-11-21 20:41:44448 "args": [
449 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py",
450 ],
451 },
chenwilliam56a90382016-12-09 02:16:28452 "devtools_eslint": {
453 "label": "//third_party/WebKit/Source/devtools:devtools_eslint",
454 "type": "script",
455 "script": "//testing/scripts/run_devtools_check.py",
456 "args": [
457 "../../third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py",
458 ],
459 },
dprankea55584f12015-07-22 00:52:47460 "display_unittests": {
461 "label": "//ui/display:display_unittests",
dpranke1643d222015-07-27 22:22:08462 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47463 },
mikecaseba2be202017-03-10 18:14:24464 "dump_syms" : {
Mark Mentovaiebb9ddd62017-09-25 17:24:41465 "label": "//third_party/breakpad:dump_syms",
mikecaseba2be202017-03-10 18:14:24466 "type": "additional_compile_target",
467 },
dprankea55584f12015-07-22 00:52:47468 "events_unittests": {
469 "label": "//ui/events:events_unittests",
dprankef497c7962015-07-31 19:46:23470 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47471 },
oshima2a44e112016-06-23 17:59:18472 "exo_unittests": {
473 "label": "//components/exo:exo_unittests",
474 "type": "windowed_test_launcher",
475 },
dprankea55584f12015-07-22 00:52:47476 "extensions_browsertests": {
477 "label": "//extensions:extensions_browsertests",
dprankef497c7962015-07-31 19:46:23478 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47479 },
480 "extensions_unittests": {
481 "label": "//extensions:extensions_unittests",
dprankef497c7962015-07-31 19:46:23482 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47483 },
erg716b6172016-03-18 18:30:29484 "filesystem_service_unittests": {
erg4652931e2016-04-27 22:15:40485 "label": "//components/filesystem:filesystem_service_unittests",
erg716b6172016-03-18 18:30:29486 "type": "console_test_launcher",
487 },
dprankea55584f12015-07-22 00:52:47488 "gcm_unit_tests": {
489 "label": "//google_apis/gcm:gcm_unit_tests",
dprankef497c7962015-07-31 19:46:23490 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47491 },
492 "gfx_unittests": {
493 "label": "//ui/gfx:gfx_unittests",
pcc9c98ed22017-06-29 22:16:11494 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47495 },
jochen656a7c92015-12-08 00:56:45496 "gin_unittests": {
497 "label": "//gin:gin_unittests",
498 "type": "console_test_launcher",
499 },
dprankedbdd9d82015-08-12 21:18:18500 "gles2_conform_test": {
501 "label": "//gpu/gles2_conform_support:gles2_conform_test",
502 "type": "console_test_launcher",
503 },
504 "gl_tests": {
505 "label": "//gpu:gl_tests",
506 "type": "raw",
507 "args": [],
508 },
dprankea55584f12015-07-22 00:52:47509 "gl_unittests": {
510 "label": "//ui/gl:gl_unittests",
pcc381297ba2017-06-30 18:37:07511 "type": "console_test_launcher",
kylechar50abf5a2016-11-29 16:03:07512 },
kylechar39705682017-01-19 14:37:23513 "gl_unittests_ozone": {
514 "label": "//ui/gl:gl_unittests_ozone",
vmpstrfaa78922016-12-21 02:12:21515 "label_type": "group",
516 "type": "windowed_test_launcher",
517 "executable": "gl_unittests",
vmpstrfaa78922016-12-21 02:12:21518 },
dprankea55584f12015-07-22 00:52:47519 "gn_unittests": {
520 "label": "//tools/gn:gn_unittests",
pcc9c98ed22017-06-29 22:16:11521 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47522 },
523 "google_apis_unittests": {
524 "label": "//google_apis:google_apis_unittests",
dpranke358c73c2015-08-25 20:43:30525 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47526 },
markdittmer2ce53ac2016-05-05 16:21:02527 "gpu_ipc_service_unittests": {
528 "label": "//gpu/ipc/service:gpu_ipc_service_unittests",
529 "type": "windowed_test_launcher",
530 },
dprankea55584f12015-07-22 00:52:47531 "gpu_unittests": {
532 "label": "//gpu:gpu_unittests",
dprankef497c7962015-07-31 19:46:23533 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47534 },
dprankecb4a2e242016-09-19 01:13:14535 "headless_lib": {
536 "label": "//headless:headless_lib",
537 "type": "additional_compile_target",
538 },
perezjub8b863a02016-04-15 09:20:00539 "headless_browsertests": {
540 "label": "//headless:headless_browsertests",
541 "type": "console_test_launcher",
542 },
dprankecb4a2e242016-09-19 01:13:14543 "headless_shell": {
544 "label": "//headless:headless_shell",
545 "type": "additional_compile_target",
546 },
547 "headless_tests": {
548 "label": "//headless:headless_tests",
549 "type": "additional_compile_target",
550 },
perezjub8b863a02016-04-15 09:20:00551 "headless_unittests": {
552 "label": "//headless:headless_unittests",
553 "type": "console_test_launcher",
554 },
dprankea55584f12015-07-22 00:52:47555 "installer_util_unittests": {
556 "label": "//chrome/installer/util:installer_util_unittests",
thakis33fc54c2016-02-13 01:51:16557 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47558 },
anantaf2e54a92016-05-28 00:39:16559 "install_static_unittests": {
560 "label": "//chrome/install_static:install_static_unittests",
561 "type": "console_test_launcher",
562 },
dprankea55584f12015-07-22 00:52:47563 "interactive_ui_tests": {
564 "label": "//chrome/test:interactive_ui_tests",
dprankef497c7962015-07-31 19:46:23565 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47566 },
smutb99217a2017-03-02 23:45:24567 "ios_chrome_integration_egtests": {
568 "label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
569 "type": "raw",
570 "args": [],
571 },
Randall Raymondaeed64d2017-07-20 18:11:26572 "ios_chrome_payments_egtests": {
573 "label": "//ios/chrome/test/earl_grey:ios_chrome_payments_egtests",
574 "type": "raw",
575 "args": [
576 "--enable-features=WebPayments",
577 ],
578 },
baxley491ee982017-03-31 15:17:49579 "ios_chrome_reading_list_egtests": {
580 "label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
581 "type": "raw",
582 "args": [],
583 },
smutb99217a2017-03-02 23:45:24584 "ios_chrome_settings_egtests": {
585 "label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
586 "type": "raw",
587 "args": [],
588 },
589 "ios_chrome_smoke_egtests": {
590 "label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
591 "type": "raw",
592 "args": [],
593 },
594 "ios_chrome_ui_egtests": {
595 "label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
596 "type": "raw",
Sergio Collazosb54ae332017-07-19 20:54:16597 "args": [],
smutb99217a2017-03-02 23:45:24598 },
dprankecb4a2e242016-09-19 01:13:14599 "ios_chrome_unittests": {
sdefresnee51457b2016-12-15 09:11:44600 "label": "//ios/chrome/test:ios_chrome_unittests",
dprankecb4a2e242016-09-19 01:13:14601 "type": "raw",
602 "args": [],
603 },
smutb99217a2017-03-02 23:45:24604 "ios_chrome_web_egtests": {
605 "label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
606 "type": "raw",
607 "args": [],
608 },
Mike Dougherty898a6902017-07-13 16:47:33609 "ios_components_unittests": {
610 "label": "//ios/components:ios_components_unittests",
611 "type": "raw",
612 "args": [],
613 },
dprankecb4a2e242016-09-19 01:13:14614 "ios_net_unittests": {
615 "label": "//ios/net:ios_net_unittests",
616 "type": "raw",
617 "args": [],
618 },
smutb99217a2017-03-02 23:45:24619 "ios_showcase_egtests": {
620 "label": "//ios/showcase:ios_showcase_egtests",
621 "type": "raw",
622 "args": [],
623 },
dprankecb4a2e242016-09-19 01:13:14624 "ios_web_inttests": {
625 "label": "//ios/web:ios_web_inttests",
626 "type": "raw",
627 "args": [],
628 },
smutb99217a2017-03-02 23:45:24629 "ios_web_shell_egtests": {
630 "label": "//ios/web/shell/test:ios_web_shell_egtests",
631 "type": "raw",
632 "args": [],
633 },
dprankecb4a2e242016-09-19 01:13:14634 "ios_web_unittests": {
635 "label": "//ios/web:ios_web_unittests",
636 "type": "raw",
637 "args": [],
638 },
Mike Dougherty33e75bbc2017-07-13 16:32:26639 "ios_web_view_inttests": {
640 "label": "//ios/web_view/test:ios_web_view_inttests",
641 "type": "raw",
642 "args": [],
643 },
Eugene But681f7d8e2017-09-11 18:18:43644 "ios_web_view_unittests": {
645 "label": "//ios/web_view:ios_web_view_unittests",
646 "type": "raw",
647 "args": [],
648 },
dprankea55584f12015-07-22 00:52:47649 "ipc_tests": {
650 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43651 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47652 },
653 "jingle_unittests": {
654 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23655 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47656 },
dprankecb4a2e242016-09-19 01:13:14657 "junit_unit_tests": {
658 "label": "//testing/android/junit:junit_unit_tests",
659 "type": "junit_test",
660 },
dprankea55584f12015-07-22 00:52:47661 "keyboard_unittests": {
662 "label": "//ui/keyboard:keyboard_unittests",
yhanadafa661282017-07-13 03:09:11663 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47664 },
mfomitchevee01a832017-04-18 20:55:02665 "latency_unittests": {
666 "label": "//ui/latency:latency_unittests",
667 "type": "console_test_launcher",
668 },
ergf1f689f2016-03-22 00:51:20669 "leveldb_service_unittests": {
670 "label": "//components/leveldb:leveldb_service_unittests",
671 "type": "console_test_launcher",
672 },
kjellanderd5fe9bf2017-04-13 09:05:02673 "libjingle_xmpp_unittests": {
674 "label": "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
675 "type": "console_test_launcher",
676 },
zengster7ec9ff52016-08-10 00:18:41677 "mac_installer_unittests": {
678 "label": "//chrome/installer/mac/app:mac_installer_unittests",
679 "type": "console_test_launcher",
680 },
dprankecb4a2e242016-09-19 01:13:14681 "mash:all" : {
682 "label": "//mash:all",
683 "type": "additional_compile_target",
684 },
dprankea55584f12015-07-22 00:52:47685 "media_unittests": {
686 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23687 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47688 },
xhwang9c958fd2016-12-05 23:17:16689 "media_service_unittests": {
690 "label": "//media/mojo/services:media_service_unittests",
bena5d1cd42016-04-29 22:59:53691 "type": "console_test_launcher",
692 },
hubbe2dc5a592015-09-23 23:29:31693 "media_blink_unittests": {
694 "label": "//media/blink:media_blink_unittests",
695 "type": "windowed_test_launcher",
696 },
cliffordcheng24894e8a2016-12-05 22:31:11697 "media_router_perf_tests": {
698 "label": "//chrome/test/media_router:media_router_perf_tests",
699 "type": "script",
cliffordcheng28deea192017-01-14 04:21:50700 "script": "//chrome/test/media_router/telemetry/run_benchmark.py",
cliffordcheng24894e8a2016-12-05 22:31:11701 "args": [
702 "--browser=release",
703 "--also-run-disabled-tests",
704 "-v",
705 "--use-live-sites",
706 "--output-format=chartjson",
707 "--output-dir=${ISOLATED_OUTDIR}",
708 ],
709 },
cliffordchengf7655ed2016-11-29 03:07:55710 "media_router_tests": {
711 "label": "//chrome/test/media_router:media_router_tests",
712 "type": "script",
713 "script": "//chrome/test/media_router/internal/media_router_tests.py",
714 "args": [
715 "--extension",
716 "mr_extension/",
717 "--test_binary",
718 "./browser_tests",
719 ],
720 },
martinissee599af2017-02-06 23:19:43721 "microdump_stackwalk" : {
Mark Mentovaiebb9ddd62017-09-25 17:24:41722 "label": "//third_party/breakpad:microdump_stackwalk",
martinissee599af2017-02-06 23:19:43723 "type": "additional_compile_target",
724 },
dprankea55584f12015-07-22 00:52:47725 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30726 "label": "//media/midi:midi_unittests",
727 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47728 },
dprankecb4a2e242016-09-19 01:13:14729 "mini_installer": {
730 "label": "//chrome/installer/mini_installer:mini_installer",
731 "type": "additional_compile_target",
732 },
dprankea55584f12015-07-22 00:52:47733 "mojo_common_unittests": {
734 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23735 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47736 },
yzshen1d7a11c2016-01-27 00:16:32737 "mojo_js_unittests": {
alokp210e57b22017-01-20 20:36:26738 "label": "//mojo/edk/js/tests:mojo_js_unittests",
yzshen1d7a11c2016-01-27 00:16:32739 "type": "console_test_launcher",
740 },
dprankea55584f12015-07-22 00:52:47741 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08742 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23743 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47744 },
dprankea55584f12015-07-22 00:52:47745 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08746 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35747 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47748 },
dprankea55584f12015-07-22 00:52:47749 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08750 "label": "//mojo/edk/system:mojo_system_unittests",
sammc98ecd4a2016-04-29 01:59:21751 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47752 },
sammc9b709032016-08-12 00:35:24753 "mojo_test_apk": {
754 "label": "//mojo/android:mojo_test_apk",
755 "type": "console_test_launcher",
756 },
Andrew Grieve860b1552017-09-06 14:50:06757 "monochrome_static_initializers": {
758 "label": "//chrome/android:monochrome_static_initializers",
759 "type": "additional_compile_target",
760 },
dprankea55584f12015-07-22 00:52:47761 "message_center_unittests": {
762 "label": "//ui/message_center:message_center_unittests",
dpranke94c6fb22016-06-10 01:55:08763 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47764 },
Alexei Svitkineac3352b2017-10-06 13:46:30765 "metrics_python_tests": {
766 "label": "//tools/metrics:metrics_python_tests",
767 "type": "script",
768 "script": "//testing/scripts/run_isolated_script_test.py",
769 "args": [
770 "../../tools/metrics/metrics_python_tests.py"
771 ]
772 },
sky130827232015-11-23 20:41:08773 "mash_unittests": {
774 "label": "//mash:mash_unittests",
sky57052d022016-04-29 17:18:23775 "type": "windowed_test_launcher",
sky97b65592015-11-02 20:08:25776 },
maruel44522882016-08-04 17:59:11777 "nacl_helper_nonsfi_unittests": {
778 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
779 "type": "raw",
780 "args": [],
781 },
dprankea55584f12015-07-22 00:52:47782 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13783 "label": "//components/nacl/loader:nacl_loader_unittests",
pcc9c98ed22017-06-29 22:16:11784 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47785 },
dprankecb4a2e242016-09-19 01:13:14786 "net_junit_tests": {
787 "label": "//net/android:net_junit_tests",
788 "type": "junit_test",
789 },
xunjielibdefc4f2017-06-07 18:58:59790 "net_perftests": {
791 "label": "//net:net_perftests",
792 "type": "script",
793 "script": "//testing/scripts/run_gtest_perf_test.py",
794 "args": [
795 "net_perftests",
796 ],
797 },
dprankea55584f12015-07-22 00:52:47798 "net_unittests": {
799 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23800 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47801 },
dprankecb4a2e242016-09-19 01:13:14802 "next_version_mini_installer": {
803 "label": "//chrome/installer/mini_installer:next_version_mini_installer",
804 "type": "additional_compile_target",
805 },
dprankea55584f12015-07-22 00:52:47806 "ozone_unittests": {
807 "label": "//ui/ozone:ozone_unittests",
maruel44522882016-08-04 17:59:11808 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47809 },
kylechar4fab9212016-08-24 21:09:10810 "ozone_gl_unittests": {
811 "label": "//ui/ozone/gl:ozone_gl_unittests",
812 "type": "console_test_launcher",
813 },
art-snakea84bce92016-10-27 19:16:49814 "pdf_unittests": {
815 "label": "//pdf:pdf_unittests",
816 "type": "console_test_launcher",
817 },
Michael Achenbach377951a2017-07-12 09:15:33818 "pdfium_test": {
819 "label": "//third_party/pdfium/samples:pdfium_test",
820 "type": "additional_compile_target",
821 },
822 "postmortem-metadata": {
823 "label": "//v8:postmortem-metadata",
824 "type": "additional_compile_target",
825 },
dprankea55584f12015-07-22 00:52:47826 "ppapi_unittests": {
827 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48828 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47829 },
830 "printing_unittests": {
831 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23832 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47833 },
834 "remoting_unittests": {
835 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23836 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47837 },
dprankea55584f12015-07-22 00:52:47838 "sandbox_linux_unittests": {
839 "label": "//sandbox/linux:sandbox_linux_unittests",
pcc9c98ed22017-06-29 22:16:11840 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47841 },
842 "sandbox_mac_unittests": {
843 "label": "//sandbox/mac:sandbox_mac_unittests",
rsesek172b7352016-05-10 22:27:26844 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47845 },
846 "sbox_integration_tests": {
847 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16848 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47849 },
850 "sbox_unittests": {
851 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16852 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47853 },
854 "sbox_validation_tests": {
855 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16856 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47857 },
bendb45a532016-10-15 01:22:09858 "service_manager_unittests": {
rockot734fb662016-10-15 16:41:30859 "label": "//services/service_manager/tests:service_manager_unittests",
bendb45a532016-10-15 01:22:09860 "type": "console_test_launcher",
861 },
ke.heaf8ead22017-05-13 03:54:30862 "service_junit_tests": {
863 "label": "//services:service_junit_tests",
864 "type": "junit_test",
865 },
ergcd559ca2017-05-26 23:43:38866 "services_unittests": {
867 "label": "//services:services_unittests",
ergf4938cd2017-05-19 01:42:08868 "type": "windowed_test_launcher",
rockot8cdd37a2017-01-28 02:53:31869 },
dprankea55584f12015-07-22 00:52:47870 "setup_unittests": {
871 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59872 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47873 },
874 "skia_unittests": {
875 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43876 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47877 },
eseckler7233c1a72017-01-25 15:07:54878 "snapshot_unittests": {
879 "label": "//ui/snapshot:snapshot_unittests",
880 "type": "windowed_test_launcher",
881 },
dprankea55584f12015-07-22 00:52:47882 "sql_unittests": {
883 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43884 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47885 },
pwnall008c0272016-10-14 16:54:04886 "storage_unittests": {
pwnall9f1622a2017-04-21 09:39:02887 "label": "//storage:storage_unittests",
pwnall008c0272016-10-14 16:54:04888 "type": "console_test_launcher",
889 },
sugoic9c93b52017-01-12 16:11:02890 "swiftshader_unittests": {
891 "label": "//third_party/swiftshader/tests/unittests:swiftshader_unittests",
892 "type": "raw",
893 "args": [],
894 },
dprankea55584f12015-07-22 00:52:47895 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23896 "label": "//chrome/test:sync_integration_tests",
897 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47898 },
Benjamin Pastene334ba252017-09-29 02:25:05899 "system_webview_apk": {
900 "label": "//android_webview:system_webview_apk",
901 "type": "additional_compile_target",
902 },
Jinsuk Kim3f7c90c2017-07-16 19:43:50903 "system_webview_shell_layout_test_apk": {
904 "label": "//android_webview/tools/system_webview_shell:system_webview_shell_layout_test_apk",
905 "type": "console_test_launcher",
906 },
kbr48321ca02016-06-23 03:24:08907 "telemetry_gpu_integration_test": {
908 "label": "//chrome/test:telemetry_gpu_integration_test",
909 "type": "script",
910 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
911 "args": [
912 "../../content/test/gpu/run_gpu_integration_test.py",
913 ],
914 },
nednguyenfbee71a62015-10-01 12:41:13915 "telemetry_gpu_unittests": {
916 "label": "//chrome/test:telemetry_gpu_unittests",
917 "type": "script",
918 "script": "//testing/scripts/run_telemetry_as_googletest.py",
919 "args": [
920 "../../content/test/gpu/run_unittests.py",
921 "-v",
922 ],
923 },
nednguyen9ce21622015-10-08 12:30:48924 "telemetry_perf_unittests": {
925 "label": "//chrome/test:telemetry_perf_unittests",
926 "type": "script",
927 "script": "//testing/scripts/run_telemetry_as_googletest.py",
928 "args": [
nednguyen9ce21622015-10-08 12:30:48929 "../../tools/perf/run_tests",
930 "-v",
931 ],
932 },
eyaichd158d952016-09-02 13:23:41933 "telemetry_perf_tests": {
934 "label": "//chrome/test:telemetry_perf_tests",
935 "type": "script",
936 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
937 "args": [
938 "../../tools/perf/run_benchmark",
939 ],
940 },
Stephen Martinis0b18efa102017-09-25 22:55:12941 "telemetry_perf_tests_new": {
942 "label": "//chrome/test:telemetry_perf_tests",
943 "type": "script",
944 "script": "//testing/scripts/run_multiple_telemetry_benchmarks_as_googletest.py",
945 "args": [
946 "../../tools/perf/run_benchmark",
947 ],
948 },
Stephen Martinisb6eb4392017-06-14 20:40:25949 "telemetry_perf_webview_tests": {
950 "label": "//chrome/test:telemetry_perf_webview_tests",
951 "type": "script",
952 "script": "//third_party/catapult/devil/devil/android/tools/system_app.py",
953 "args": [
954 "remove",
Stephen Martinis2bb854b2017-06-16 22:30:16955 "--package",
956 "com.android.webview",
957 "com.google.android.webview",
Stephen Martinisb6eb4392017-06-14 20:40:25958 "-v",
959 "--",
Stephen Martinis179506992017-06-16 23:32:48960 "../../testing/scripts/run_telemetry_benchmark_as_googletest.py",
Stephen Martinisb6eb4392017-06-14 20:40:25961 "../../tools/perf/run_benchmark",
962 ],
963 },
nednguyen8365ba52015-11-18 15:52:46964 "telemetry_unittests": {
965 "label": "//chrome/test:telemetry_unittests",
966 "type": "script",
967 "script": "//testing/scripts/run_telemetry_as_googletest.py",
968 "args": [
969 "--xvfb",
nednguyena91919182016-01-13 18:31:53970 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46971 "-v",
nednguyene882052d2016-12-13 12:36:41972 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
973 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
974 "--jobs=1",
nednguyen8365ba52015-11-18 15:52:46975 "--chrome-root",
976 "../../",
977 ],
978 },
Ramin Halavatide8f7f72017-07-10 10:31:38979 "traffic_annotation_auditor_unittests": {
980 "label":
981 "//tools/traffic_annotation/auditor:traffic_annotation_auditor_unittests",
982 "type": "console_test_launcher",
983 },
eyaich7c79b912016-10-29 00:39:25984 "cc_perftests": {
985 "label": "//cc:cc_perftests",
986 "type": "script",
987 "script": "//testing/scripts/run_gtest_perf_test.py",
988 "args": [
989 "cc_perftests",
nednguyen6451d7d2017-05-09 14:37:54990 "--adb-path",
991 "src/third_party/android_tools/sdk/platform-tools/adb"
eyaich7c79b912016-10-29 00:39:25992 ],
993 },
crouleau98e395312017-01-12 01:29:48994 "media_perftests": {
995 "label": "//media:media_perftests",
996 "type": "script",
997 "script": "//testing/scripts/run_gtest_perf_test.py",
998 "args": [
999 "media_perftests",
1000 ],
1001 },
eyaichd3e023c12016-11-14 22:41:011002 "load_library_perf_tests": {
1003 "label": "//chrome/test:load_library_perf_tests",
1004 "type": "script",
1005 "script": "//testing/scripts/run_gtest_perf_test.py",
1006 "args": [
1007 "load_library_perf_tests",
1008 "--test-launcher-print-test-stdio=always"
1009 ],
1010 },
1011 "tracing_perftests": {
1012 "label": "//components/tracing:tracing_perftests",
1013 "type": "script",
1014 "script": "//testing/scripts/run_gtest_perf_test.py",
1015 "args": [
1016 "tracing_perftests",
nednguyen6451d7d2017-05-09 14:37:541017 "--test-launcher-print-test-stdio=always",
1018 "--adb-path",
1019 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:011020 ],
1021 },
1022 "gpu_perftests": {
1023 "label": "//gpu:gpu_perftests",
1024 "type": "script",
1025 "script": "//testing/scripts/run_gtest_perf_test.py",
1026 "args": [
1027 "gpu_perftests",
1028 "--adb-path",
nednguyen6451d7d2017-05-09 14:37:541029 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:011030 ],
1031 },
1032 "angle_perftests": {
eyaich87225102016-11-15 15:15:171033 "label": "//chrome/test:angle_perftests",
eyaichd3e023c12016-11-14 22:41:011034 "type": "script",
1035 "script": "//testing/scripts/run_gtest_perf_test.py",
1036 "args": [
1037 "angle_perftests",
1038 "--test-launcher-print-test-stdio=always",
1039 "--test-launcher-jobs=1"
1040 ],
1041 },
1042 "performance_browser_tests": {
eyaich87225102016-11-15 15:15:171043 "label": "//chrome/test:performance_browser_tests",
eyaichd3e023c12016-11-14 22:41:011044 "type": "script",
1045 "script": "//testing/scripts/run_gtest_perf_test.py",
1046 "args": [
1047 "performance_browser_tests",
1048 "--test-launcher-print-test-stdio=always",
1049 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
1050 "--test-launcher-jobs=1",
1051 "--enable-gpu"
1052 ],
1053 },
tapted5f112f292016-12-11 23:59:401054 "native_theme_unittests": {
1055 "label": "//ui/native_theme:native_theme_unittests",
1056 "type": "windowed_test_launcher",
1057 },
pkotwicz280f66602015-11-04 02:51:551058 "ui_android_unittests": {
1059 "label": "//ui/android:ui_android_unittests",
1060 "type": "console_test_launcher",
1061 },
dprankea55584f12015-07-22 00:52:471062 "ui_base_unittests": {
1063 "label": "//ui/base:ui_base_unittests",
1064 "type": "windowed_test_launcher",
1065 },
1066 "ui_chromeos_unittests": {
1067 "label": "//ui/chromeos:ui_chromeos_unittests",
maruel44522882016-08-04 17:59:111068 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471069 },
yoshiki8e2ddbb2016-03-10 07:11:221070 "ui_arc_unittests": {
1071 "label": "//ui/arc:ui_arc_unittests",
yoshiki4e9fc102017-05-25 17:46:071072 "type": "windowed_test_launcher",
yoshiki8e2ddbb2016-03-10 07:11:221073 },
dprankecb4a2e242016-09-19 01:13:141074 "ui_junit_tests": {
1075 "label": "//ui/android:ui_junit_tests",
1076 "type": "junit_test",
1077 },
dprankea55584f12015-07-22 00:52:471078 "ui_touch_selection_unittests": {
1079 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:001080 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471081 },
1082 "unit_tests": {
1083 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:231084 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471085 },
1086 "url_unittests": {
1087 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:431088 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471089 },
jbaumand69f1172017-01-10 01:46:491090 "video_decode_accelerator_unittest": {
1091 "label": "//media/gpu:video_decode_accelerator_unittest",
1092 "type": "raw",
1093 "args": [],
1094 },
qyearsley88bc4802016-05-17 18:02:341095 "views_mus_interactive_ui_tests": {
1096 "label": "//ui/views/mus:views_mus_interactive_ui_tests",
1097 "type": "windowed_test_launcher",
1098 },
msw2e3ff862016-02-26 02:20:091099 "views_mus_unittests": {
1100 "label": "//ui/views/mus:views_mus_unittests",
1101 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471102 },
1103 "views_unittests": {
1104 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:101105 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471106 },
kylechara16d2572017-07-10 17:41:321107 "viz_unittests": {
1108 "label": "//components/viz:viz_unittests",
1109 "type": "windowed_test_launcher",
1110 },
Christopher Grant193648b2017-06-07 15:08:361111 "vr_common_unittests": {
Ian Vollick4e26ac322017-07-11 14:58:211112 "label": "//chrome/browser/vr:vr_common_unittests",
bsheedy4b23d0b2016-09-20 23:35:031113 "type": "console_test_launcher",
1114 },
Peng Huang712a24522017-09-27 16:24:251115 "wayland_client_perftests": {
1116 "label": "//components/exo/wayland:wayland_client_perftests",
1117 "type": "windowed_test_launcher",
1118 },
dprankecb4a2e242016-09-19 01:13:141119 "webapk_client_junit_tests": {
1120 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
1121 "type": "junit_test",
1122 },
1123 "webapk_shell_apk_junit_tests": {
dpranke43e6a6d2016-09-19 02:10:241124 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
dprankecb4a2e242016-09-19 01:13:141125 "type": "junit_test",
1126 },
tansell88df42592016-11-15 07:22:591127 "webkit_layout_tests": {
1128 "label": "//:webkit_layout_tests",
1129 "type": "script",
tansell0e6baaf22017-02-16 09:14:531130 "script": "//testing/scripts/run_isolated_script_test.py",
1131 "args": [
1132 "--xvfb",
1133 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1134 "--clobber-old-results",
1135 "--debug-rwt-logging",
1136 "--no-show-results",
1137 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1138 ],
1139 },
1140 "webkit_layout_tests_exparchive": {
1141 "label": "//:webkit_layout_tests_exparchive",
1142 "type": "script",
1143 "script": "//testing/scripts/run_isolated_script_test.py",
tansell88df42592016-11-15 07:22:591144 "args": [
1145 "--xvfb",
1146 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
tansell9ca24bfb2017-02-16 13:56:311147 "--seed", "4",
tansell88df42592016-11-15 07:22:591148 "--no-show-results",
tansell9ca24bfb2017-02-16 13:56:311149 "--clobber-old-results",
1150 "--exit-after-n-failures", "5000",
1151 "--exit-after-n-crashes-or-timeouts", "100",
1152 "--debug-rwt-logging",
tansell88df42592016-11-15 07:22:591153 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1154 ],
1155 },
Dirk Pranke43a5c812017-09-06 03:25:411156 "webkit_python_tests": {
1157 "label": "//:webkit_python_tests",
1158 "type": "script",
1159 "script": "//testing/scripts/run_isolated_script_test.py",
1160 "args": [
1161 "../../third_party/WebKit/Tools/Scripts/test-webkitpy"
1162 ]
1163 },
dprankea55584f12015-07-22 00:52:471164 "webkit_unit_tests": {
Nicholas Vernee6c400f2017-08-09 09:47:491165 "label": "//third_party/WebKit/Source/controller:webkit_unit_tests",
Dirk Pranke1b64ac442015-12-10 01:47:021166 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471167 },
ctzsmc6d96432017-05-11 05:48:311168 "webview_instrumentation_test_apk": {
1169 "label": "//android_webview/test:webview_instrumentation_test_apk",
1170 "type": "console_test_launcher",
1171 },
Jinsuk Kim3f7c90c2017-07-16 19:43:501172 "webview_ui_test_app_test_apk": {
1173 "label": "//android_webview/tools/automated_ui_tests:webview_ui_test_app_test_apk",
1174 "type": "console_test_launcher",
1175 },
dprankea55584f12015-07-22 00:52:471176 "wm_unittests": {
1177 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:001178 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471179 },
1180 "wtf_unittests": {
yutak6fbccaf2017-03-31 07:55:131181 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
Dirk Pranke1b64ac442015-12-10 01:47:021182 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471183 },
etiennep87edf212017-06-28 20:56:501184 "zucchini_unittests": {
rnk954f8222017-06-29 17:51:491185 "label": "//chrome/installer/zucchini:zucchini_unittests",
etiennep87edf212017-06-28 20:56:501186 "type": "console_test_launcher",
1187 },
dprankea55584f12015-07-22 00:52:471188}