blob: f3c642ec40caea3e2d887a30e21a539b882b11e3 [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",
Greg Thompsoncea44ff2017-10-11 12:22:53566 "args": [
567 "--snapshot-output-dir=${ISOLATED_OUTDIR}",
568 ],
dprankea55584f12015-07-22 00:52:47569 },
smutb99217a2017-03-02 23:45:24570 "ios_chrome_integration_egtests": {
571 "label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
572 "type": "raw",
573 "args": [],
574 },
Randall Raymondaeed64d2017-07-20 18:11:26575 "ios_chrome_payments_egtests": {
576 "label": "//ios/chrome/test/earl_grey:ios_chrome_payments_egtests",
577 "type": "raw",
578 "args": [
579 "--enable-features=WebPayments",
580 ],
581 },
baxley491ee982017-03-31 15:17:49582 "ios_chrome_reading_list_egtests": {
583 "label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
584 "type": "raw",
585 "args": [],
586 },
smutb99217a2017-03-02 23:45:24587 "ios_chrome_settings_egtests": {
588 "label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
589 "type": "raw",
590 "args": [],
591 },
592 "ios_chrome_smoke_egtests": {
593 "label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
594 "type": "raw",
595 "args": [],
596 },
597 "ios_chrome_ui_egtests": {
598 "label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
599 "type": "raw",
Sergio Collazosb54ae332017-07-19 20:54:16600 "args": [],
smutb99217a2017-03-02 23:45:24601 },
dprankecb4a2e242016-09-19 01:13:14602 "ios_chrome_unittests": {
sdefresnee51457b2016-12-15 09:11:44603 "label": "//ios/chrome/test:ios_chrome_unittests",
dprankecb4a2e242016-09-19 01:13:14604 "type": "raw",
605 "args": [],
606 },
smutb99217a2017-03-02 23:45:24607 "ios_chrome_web_egtests": {
608 "label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
609 "type": "raw",
610 "args": [],
611 },
Mike Dougherty898a6902017-07-13 16:47:33612 "ios_components_unittests": {
613 "label": "//ios/components:ios_components_unittests",
614 "type": "raw",
615 "args": [],
616 },
dprankecb4a2e242016-09-19 01:13:14617 "ios_net_unittests": {
618 "label": "//ios/net:ios_net_unittests",
619 "type": "raw",
620 "args": [],
621 },
smutb99217a2017-03-02 23:45:24622 "ios_showcase_egtests": {
623 "label": "//ios/showcase:ios_showcase_egtests",
624 "type": "raw",
625 "args": [],
626 },
dprankecb4a2e242016-09-19 01:13:14627 "ios_web_inttests": {
628 "label": "//ios/web:ios_web_inttests",
629 "type": "raw",
630 "args": [],
631 },
smutb99217a2017-03-02 23:45:24632 "ios_web_shell_egtests": {
633 "label": "//ios/web/shell/test:ios_web_shell_egtests",
634 "type": "raw",
635 "args": [],
636 },
dprankecb4a2e242016-09-19 01:13:14637 "ios_web_unittests": {
638 "label": "//ios/web:ios_web_unittests",
639 "type": "raw",
640 "args": [],
641 },
Mike Dougherty33e75bbc2017-07-13 16:32:26642 "ios_web_view_inttests": {
643 "label": "//ios/web_view/test:ios_web_view_inttests",
644 "type": "raw",
645 "args": [],
646 },
Eugene But681f7d8e2017-09-11 18:18:43647 "ios_web_view_unittests": {
648 "label": "//ios/web_view:ios_web_view_unittests",
649 "type": "raw",
650 "args": [],
651 },
dprankea55584f12015-07-22 00:52:47652 "ipc_tests": {
653 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43654 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47655 },
656 "jingle_unittests": {
657 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23658 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47659 },
dprankecb4a2e242016-09-19 01:13:14660 "junit_unit_tests": {
661 "label": "//testing/android/junit:junit_unit_tests",
662 "type": "junit_test",
663 },
dprankea55584f12015-07-22 00:52:47664 "keyboard_unittests": {
665 "label": "//ui/keyboard:keyboard_unittests",
yhanadafa661282017-07-13 03:09:11666 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47667 },
mfomitchevee01a832017-04-18 20:55:02668 "latency_unittests": {
669 "label": "//ui/latency:latency_unittests",
670 "type": "console_test_launcher",
671 },
ergf1f689f2016-03-22 00:51:20672 "leveldb_service_unittests": {
673 "label": "//components/leveldb:leveldb_service_unittests",
674 "type": "console_test_launcher",
675 },
kjellanderd5fe9bf2017-04-13 09:05:02676 "libjingle_xmpp_unittests": {
677 "label": "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
678 "type": "console_test_launcher",
679 },
zengster7ec9ff52016-08-10 00:18:41680 "mac_installer_unittests": {
681 "label": "//chrome/installer/mac/app:mac_installer_unittests",
682 "type": "console_test_launcher",
683 },
dprankecb4a2e242016-09-19 01:13:14684 "mash:all" : {
685 "label": "//mash:all",
686 "type": "additional_compile_target",
687 },
dprankea55584f12015-07-22 00:52:47688 "media_unittests": {
689 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23690 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47691 },
xhwang9c958fd2016-12-05 23:17:16692 "media_service_unittests": {
693 "label": "//media/mojo/services:media_service_unittests",
bena5d1cd42016-04-29 22:59:53694 "type": "console_test_launcher",
695 },
hubbe2dc5a592015-09-23 23:29:31696 "media_blink_unittests": {
697 "label": "//media/blink:media_blink_unittests",
698 "type": "windowed_test_launcher",
699 },
cliffordcheng24894e8a2016-12-05 22:31:11700 "media_router_perf_tests": {
701 "label": "//chrome/test/media_router:media_router_perf_tests",
702 "type": "script",
cliffordcheng28deea192017-01-14 04:21:50703 "script": "//chrome/test/media_router/telemetry/run_benchmark.py",
cliffordcheng24894e8a2016-12-05 22:31:11704 "args": [
705 "--browser=release",
706 "--also-run-disabled-tests",
707 "-v",
708 "--use-live-sites",
709 "--output-format=chartjson",
710 "--output-dir=${ISOLATED_OUTDIR}",
711 ],
712 },
cliffordchengf7655ed2016-11-29 03:07:55713 "media_router_tests": {
714 "label": "//chrome/test/media_router:media_router_tests",
715 "type": "script",
716 "script": "//chrome/test/media_router/internal/media_router_tests.py",
717 "args": [
718 "--extension",
719 "mr_extension/",
720 "--test_binary",
721 "./browser_tests",
722 ],
723 },
martinissee599af2017-02-06 23:19:43724 "microdump_stackwalk" : {
Mark Mentovaiebb9ddd62017-09-25 17:24:41725 "label": "//third_party/breakpad:microdump_stackwalk",
martinissee599af2017-02-06 23:19:43726 "type": "additional_compile_target",
727 },
dprankea55584f12015-07-22 00:52:47728 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30729 "label": "//media/midi:midi_unittests",
730 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47731 },
dprankecb4a2e242016-09-19 01:13:14732 "mini_installer": {
733 "label": "//chrome/installer/mini_installer:mini_installer",
734 "type": "additional_compile_target",
735 },
dprankea55584f12015-07-22 00:52:47736 "mojo_common_unittests": {
737 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23738 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47739 },
yzshen1d7a11c2016-01-27 00:16:32740 "mojo_js_unittests": {
alokp210e57b22017-01-20 20:36:26741 "label": "//mojo/edk/js/tests:mojo_js_unittests",
yzshen1d7a11c2016-01-27 00:16:32742 "type": "console_test_launcher",
743 },
dprankea55584f12015-07-22 00:52:47744 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08745 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23746 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47747 },
dprankea55584f12015-07-22 00:52:47748 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08749 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35750 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47751 },
dprankea55584f12015-07-22 00:52:47752 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08753 "label": "//mojo/edk/system:mojo_system_unittests",
sammc98ecd4a2016-04-29 01:59:21754 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47755 },
sammc9b709032016-08-12 00:35:24756 "mojo_test_apk": {
757 "label": "//mojo/android:mojo_test_apk",
758 "type": "console_test_launcher",
759 },
Andrew Grieve860b1552017-09-06 14:50:06760 "monochrome_static_initializers": {
761 "label": "//chrome/android:monochrome_static_initializers",
762 "type": "additional_compile_target",
763 },
dprankea55584f12015-07-22 00:52:47764 "message_center_unittests": {
765 "label": "//ui/message_center:message_center_unittests",
dpranke94c6fb22016-06-10 01:55:08766 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47767 },
Alexei Svitkineac3352b2017-10-06 13:46:30768 "metrics_python_tests": {
769 "label": "//tools/metrics:metrics_python_tests",
770 "type": "script",
771 "script": "//testing/scripts/run_isolated_script_test.py",
772 "args": [
773 "../../tools/metrics/metrics_python_tests.py"
774 ]
775 },
sky130827232015-11-23 20:41:08776 "mash_unittests": {
777 "label": "//mash:mash_unittests",
sky57052d022016-04-29 17:18:23778 "type": "windowed_test_launcher",
sky97b65592015-11-02 20:08:25779 },
maruel44522882016-08-04 17:59:11780 "nacl_helper_nonsfi_unittests": {
781 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
782 "type": "raw",
783 "args": [],
784 },
dprankea55584f12015-07-22 00:52:47785 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13786 "label": "//components/nacl/loader:nacl_loader_unittests",
pcc9c98ed22017-06-29 22:16:11787 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47788 },
dprankecb4a2e242016-09-19 01:13:14789 "net_junit_tests": {
790 "label": "//net/android:net_junit_tests",
791 "type": "junit_test",
792 },
xunjielibdefc4f2017-06-07 18:58:59793 "net_perftests": {
794 "label": "//net:net_perftests",
795 "type": "script",
796 "script": "//testing/scripts/run_gtest_perf_test.py",
797 "args": [
798 "net_perftests",
799 ],
800 },
dprankea55584f12015-07-22 00:52:47801 "net_unittests": {
802 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23803 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47804 },
dprankecb4a2e242016-09-19 01:13:14805 "next_version_mini_installer": {
806 "label": "//chrome/installer/mini_installer:next_version_mini_installer",
807 "type": "additional_compile_target",
808 },
dprankea55584f12015-07-22 00:52:47809 "ozone_unittests": {
810 "label": "//ui/ozone:ozone_unittests",
maruel44522882016-08-04 17:59:11811 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47812 },
kylechar4fab9212016-08-24 21:09:10813 "ozone_gl_unittests": {
814 "label": "//ui/ozone/gl:ozone_gl_unittests",
815 "type": "console_test_launcher",
816 },
art-snakea84bce92016-10-27 19:16:49817 "pdf_unittests": {
818 "label": "//pdf:pdf_unittests",
819 "type": "console_test_launcher",
820 },
Michael Achenbach377951a2017-07-12 09:15:33821 "pdfium_test": {
822 "label": "//third_party/pdfium/samples:pdfium_test",
823 "type": "additional_compile_target",
824 },
825 "postmortem-metadata": {
826 "label": "//v8:postmortem-metadata",
827 "type": "additional_compile_target",
828 },
dprankea55584f12015-07-22 00:52:47829 "ppapi_unittests": {
830 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48831 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47832 },
833 "printing_unittests": {
834 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23835 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47836 },
837 "remoting_unittests": {
838 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23839 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47840 },
dprankea55584f12015-07-22 00:52:47841 "sandbox_linux_unittests": {
842 "label": "//sandbox/linux:sandbox_linux_unittests",
pcc9c98ed22017-06-29 22:16:11843 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47844 },
845 "sandbox_mac_unittests": {
846 "label": "//sandbox/mac:sandbox_mac_unittests",
rsesek172b7352016-05-10 22:27:26847 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47848 },
849 "sbox_integration_tests": {
850 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16851 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47852 },
853 "sbox_unittests": {
854 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16855 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47856 },
857 "sbox_validation_tests": {
858 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16859 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47860 },
bendb45a532016-10-15 01:22:09861 "service_manager_unittests": {
rockot734fb662016-10-15 16:41:30862 "label": "//services/service_manager/tests:service_manager_unittests",
bendb45a532016-10-15 01:22:09863 "type": "console_test_launcher",
864 },
ke.heaf8ead22017-05-13 03:54:30865 "service_junit_tests": {
866 "label": "//services:service_junit_tests",
867 "type": "junit_test",
868 },
ergcd559ca2017-05-26 23:43:38869 "services_unittests": {
870 "label": "//services:services_unittests",
ergf4938cd2017-05-19 01:42:08871 "type": "windowed_test_launcher",
rockot8cdd37a2017-01-28 02:53:31872 },
dprankea55584f12015-07-22 00:52:47873 "setup_unittests": {
874 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59875 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47876 },
877 "skia_unittests": {
878 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43879 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47880 },
eseckler7233c1a72017-01-25 15:07:54881 "snapshot_unittests": {
882 "label": "//ui/snapshot:snapshot_unittests",
883 "type": "windowed_test_launcher",
884 },
dprankea55584f12015-07-22 00:52:47885 "sql_unittests": {
886 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43887 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47888 },
pwnall008c0272016-10-14 16:54:04889 "storage_unittests": {
pwnall9f1622a2017-04-21 09:39:02890 "label": "//storage:storage_unittests",
pwnall008c0272016-10-14 16:54:04891 "type": "console_test_launcher",
892 },
sugoic9c93b52017-01-12 16:11:02893 "swiftshader_unittests": {
894 "label": "//third_party/swiftshader/tests/unittests:swiftshader_unittests",
895 "type": "raw",
896 "args": [],
897 },
dprankea55584f12015-07-22 00:52:47898 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23899 "label": "//chrome/test:sync_integration_tests",
900 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47901 },
Benjamin Pastene334ba252017-09-29 02:25:05902 "system_webview_apk": {
903 "label": "//android_webview:system_webview_apk",
904 "type": "additional_compile_target",
905 },
Jinsuk Kim3f7c90c2017-07-16 19:43:50906 "system_webview_shell_layout_test_apk": {
907 "label": "//android_webview/tools/system_webview_shell:system_webview_shell_layout_test_apk",
908 "type": "console_test_launcher",
909 },
kbr48321ca02016-06-23 03:24:08910 "telemetry_gpu_integration_test": {
911 "label": "//chrome/test:telemetry_gpu_integration_test",
912 "type": "script",
913 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
914 "args": [
915 "../../content/test/gpu/run_gpu_integration_test.py",
916 ],
917 },
nednguyenfbee71a62015-10-01 12:41:13918 "telemetry_gpu_unittests": {
919 "label": "//chrome/test:telemetry_gpu_unittests",
920 "type": "script",
921 "script": "//testing/scripts/run_telemetry_as_googletest.py",
922 "args": [
923 "../../content/test/gpu/run_unittests.py",
924 "-v",
925 ],
926 },
nednguyen9ce21622015-10-08 12:30:48927 "telemetry_perf_unittests": {
928 "label": "//chrome/test:telemetry_perf_unittests",
929 "type": "script",
930 "script": "//testing/scripts/run_telemetry_as_googletest.py",
931 "args": [
nednguyen9ce21622015-10-08 12:30:48932 "../../tools/perf/run_tests",
933 "-v",
934 ],
935 },
eyaichd158d952016-09-02 13:23:41936 "telemetry_perf_tests": {
937 "label": "//chrome/test:telemetry_perf_tests",
938 "type": "script",
939 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
940 "args": [
941 "../../tools/perf/run_benchmark",
942 ],
943 },
Stephen Martinis0b18efa102017-09-25 22:55:12944 "telemetry_perf_tests_new": {
Stephen Martinisf393d242017-10-06 23:32:22945 "label": "//chrome/test:telemetry_perf_tests_new",
Stephen Martinis0b18efa102017-09-25 22:55:12946 "type": "script",
947 "script": "//testing/scripts/run_multiple_telemetry_benchmarks_as_googletest.py",
948 "args": [
949 "../../tools/perf/run_benchmark",
950 ],
951 },
Stephen Martinisb6eb4392017-06-14 20:40:25952 "telemetry_perf_webview_tests": {
953 "label": "//chrome/test:telemetry_perf_webview_tests",
954 "type": "script",
955 "script": "//third_party/catapult/devil/devil/android/tools/system_app.py",
956 "args": [
957 "remove",
Stephen Martinis2bb854b2017-06-16 22:30:16958 "--package",
959 "com.android.webview",
960 "com.google.android.webview",
Stephen Martinisb6eb4392017-06-14 20:40:25961 "-v",
962 "--",
Stephen Martinis179506992017-06-16 23:32:48963 "../../testing/scripts/run_telemetry_benchmark_as_googletest.py",
Stephen Martinisb6eb4392017-06-14 20:40:25964 "../../tools/perf/run_benchmark",
965 ],
966 },
nednguyen8365ba52015-11-18 15:52:46967 "telemetry_unittests": {
968 "label": "//chrome/test:telemetry_unittests",
969 "type": "script",
970 "script": "//testing/scripts/run_telemetry_as_googletest.py",
971 "args": [
972 "--xvfb",
nednguyena91919182016-01-13 18:31:53973 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46974 "-v",
nednguyene882052d2016-12-13 12:36:41975 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
976 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
977 "--jobs=1",
nednguyen8365ba52015-11-18 15:52:46978 "--chrome-root",
979 "../../",
980 ],
981 },
Ramin Halavatide8f7f72017-07-10 10:31:38982 "traffic_annotation_auditor_unittests": {
983 "label":
984 "//tools/traffic_annotation/auditor:traffic_annotation_auditor_unittests",
985 "type": "console_test_launcher",
986 },
eyaich7c79b912016-10-29 00:39:25987 "cc_perftests": {
988 "label": "//cc:cc_perftests",
989 "type": "script",
990 "script": "//testing/scripts/run_gtest_perf_test.py",
991 "args": [
992 "cc_perftests",
nednguyen6451d7d2017-05-09 14:37:54993 "--adb-path",
994 "src/third_party/android_tools/sdk/platform-tools/adb"
eyaich7c79b912016-10-29 00:39:25995 ],
996 },
crouleau98e395312017-01-12 01:29:48997 "media_perftests": {
998 "label": "//media:media_perftests",
999 "type": "script",
1000 "script": "//testing/scripts/run_gtest_perf_test.py",
1001 "args": [
1002 "media_perftests",
1003 ],
1004 },
eyaichd3e023c12016-11-14 22:41:011005 "load_library_perf_tests": {
1006 "label": "//chrome/test:load_library_perf_tests",
1007 "type": "script",
1008 "script": "//testing/scripts/run_gtest_perf_test.py",
1009 "args": [
1010 "load_library_perf_tests",
1011 "--test-launcher-print-test-stdio=always"
1012 ],
1013 },
1014 "tracing_perftests": {
1015 "label": "//components/tracing:tracing_perftests",
1016 "type": "script",
1017 "script": "//testing/scripts/run_gtest_perf_test.py",
1018 "args": [
1019 "tracing_perftests",
nednguyen6451d7d2017-05-09 14:37:541020 "--test-launcher-print-test-stdio=always",
1021 "--adb-path",
1022 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:011023 ],
1024 },
1025 "gpu_perftests": {
1026 "label": "//gpu:gpu_perftests",
1027 "type": "script",
1028 "script": "//testing/scripts/run_gtest_perf_test.py",
1029 "args": [
1030 "gpu_perftests",
1031 "--adb-path",
nednguyen6451d7d2017-05-09 14:37:541032 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:011033 ],
1034 },
1035 "angle_perftests": {
eyaich87225102016-11-15 15:15:171036 "label": "//chrome/test:angle_perftests",
eyaichd3e023c12016-11-14 22:41:011037 "type": "script",
1038 "script": "//testing/scripts/run_gtest_perf_test.py",
1039 "args": [
1040 "angle_perftests",
1041 "--test-launcher-print-test-stdio=always",
1042 "--test-launcher-jobs=1"
1043 ],
1044 },
1045 "performance_browser_tests": {
eyaich87225102016-11-15 15:15:171046 "label": "//chrome/test:performance_browser_tests",
eyaichd3e023c12016-11-14 22:41:011047 "type": "script",
1048 "script": "//testing/scripts/run_gtest_perf_test.py",
1049 "args": [
1050 "performance_browser_tests",
1051 "--test-launcher-print-test-stdio=always",
1052 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
1053 "--test-launcher-jobs=1",
1054 "--enable-gpu"
1055 ],
1056 },
tapted5f112f292016-12-11 23:59:401057 "native_theme_unittests": {
1058 "label": "//ui/native_theme:native_theme_unittests",
1059 "type": "windowed_test_launcher",
1060 },
pkotwicz280f66602015-11-04 02:51:551061 "ui_android_unittests": {
1062 "label": "//ui/android:ui_android_unittests",
1063 "type": "console_test_launcher",
1064 },
dprankea55584f12015-07-22 00:52:471065 "ui_base_unittests": {
1066 "label": "//ui/base:ui_base_unittests",
1067 "type": "windowed_test_launcher",
1068 },
1069 "ui_chromeos_unittests": {
1070 "label": "//ui/chromeos:ui_chromeos_unittests",
maruel44522882016-08-04 17:59:111071 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471072 },
yoshiki8e2ddbb2016-03-10 07:11:221073 "ui_arc_unittests": {
1074 "label": "//ui/arc:ui_arc_unittests",
yoshiki4e9fc102017-05-25 17:46:071075 "type": "windowed_test_launcher",
yoshiki8e2ddbb2016-03-10 07:11:221076 },
dprankecb4a2e242016-09-19 01:13:141077 "ui_junit_tests": {
1078 "label": "//ui/android:ui_junit_tests",
1079 "type": "junit_test",
1080 },
dprankea55584f12015-07-22 00:52:471081 "ui_touch_selection_unittests": {
1082 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:001083 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471084 },
1085 "unit_tests": {
1086 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:231087 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471088 },
1089 "url_unittests": {
1090 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:431091 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471092 },
jbaumand69f1172017-01-10 01:46:491093 "video_decode_accelerator_unittest": {
1094 "label": "//media/gpu:video_decode_accelerator_unittest",
1095 "type": "raw",
1096 "args": [],
1097 },
qyearsley88bc4802016-05-17 18:02:341098 "views_mus_interactive_ui_tests": {
1099 "label": "//ui/views/mus:views_mus_interactive_ui_tests",
1100 "type": "windowed_test_launcher",
1101 },
msw2e3ff862016-02-26 02:20:091102 "views_mus_unittests": {
1103 "label": "//ui/views/mus:views_mus_unittests",
1104 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471105 },
1106 "views_unittests": {
1107 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:101108 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471109 },
kylechara16d2572017-07-10 17:41:321110 "viz_unittests": {
1111 "label": "//components/viz:viz_unittests",
1112 "type": "windowed_test_launcher",
1113 },
Christopher Grant193648b2017-06-07 15:08:361114 "vr_common_unittests": {
Ian Vollick4e26ac322017-07-11 14:58:211115 "label": "//chrome/browser/vr:vr_common_unittests",
bsheedy4b23d0b2016-09-20 23:35:031116 "type": "console_test_launcher",
1117 },
Peng Huang712a24522017-09-27 16:24:251118 "wayland_client_perftests": {
1119 "label": "//components/exo/wayland:wayland_client_perftests",
1120 "type": "windowed_test_launcher",
1121 },
dprankecb4a2e242016-09-19 01:13:141122 "webapk_client_junit_tests": {
1123 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
1124 "type": "junit_test",
1125 },
1126 "webapk_shell_apk_junit_tests": {
dpranke43e6a6d2016-09-19 02:10:241127 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
dprankecb4a2e242016-09-19 01:13:141128 "type": "junit_test",
1129 },
tansell88df42592016-11-15 07:22:591130 "webkit_layout_tests": {
1131 "label": "//:webkit_layout_tests",
1132 "type": "script",
tansell0e6baaf22017-02-16 09:14:531133 "script": "//testing/scripts/run_isolated_script_test.py",
1134 "args": [
1135 "--xvfb",
1136 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1137 "--clobber-old-results",
1138 "--debug-rwt-logging",
1139 "--no-show-results",
1140 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1141 ],
1142 },
1143 "webkit_layout_tests_exparchive": {
1144 "label": "//:webkit_layout_tests_exparchive",
1145 "type": "script",
1146 "script": "//testing/scripts/run_isolated_script_test.py",
tansell88df42592016-11-15 07:22:591147 "args": [
1148 "--xvfb",
1149 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
tansell9ca24bfb2017-02-16 13:56:311150 "--seed", "4",
tansell88df42592016-11-15 07:22:591151 "--no-show-results",
tansell9ca24bfb2017-02-16 13:56:311152 "--clobber-old-results",
1153 "--exit-after-n-failures", "5000",
1154 "--exit-after-n-crashes-or-timeouts", "100",
1155 "--debug-rwt-logging",
tansell88df42592016-11-15 07:22:591156 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1157 ],
1158 },
Dirk Pranke43a5c812017-09-06 03:25:411159 "webkit_python_tests": {
1160 "label": "//:webkit_python_tests",
1161 "type": "script",
1162 "script": "//testing/scripts/run_isolated_script_test.py",
1163 "args": [
1164 "../../third_party/WebKit/Tools/Scripts/test-webkitpy"
1165 ]
1166 },
dprankea55584f12015-07-22 00:52:471167 "webkit_unit_tests": {
Nicholas Vernee6c400f2017-08-09 09:47:491168 "label": "//third_party/WebKit/Source/controller:webkit_unit_tests",
Dirk Pranke1b64ac442015-12-10 01:47:021169 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471170 },
ctzsmc6d96432017-05-11 05:48:311171 "webview_instrumentation_test_apk": {
1172 "label": "//android_webview/test:webview_instrumentation_test_apk",
1173 "type": "console_test_launcher",
1174 },
Jinsuk Kim3f7c90c2017-07-16 19:43:501175 "webview_ui_test_app_test_apk": {
1176 "label": "//android_webview/tools/automated_ui_tests:webview_ui_test_app_test_apk",
1177 "type": "console_test_launcher",
1178 },
dprankea55584f12015-07-22 00:52:471179 "wm_unittests": {
1180 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:001181 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471182 },
1183 "wtf_unittests": {
yutak6fbccaf2017-03-31 07:55:131184 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
Dirk Pranke1b64ac442015-12-10 01:47:021185 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471186 },
etiennep87edf212017-06-28 20:56:501187 "zucchini_unittests": {
rnk954f8222017-06-29 17:51:491188 "label": "//chrome/installer/zucchini:zucchini_unittests",
etiennep87edf212017-06-28 20:56:501189 "type": "console_test_launcher",
1190 },
dprankea55584f12015-07-22 00:52:471191}