blob: e2f252fb46539cbbe5d02929be5099c651b8c200 [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 },
Sergey Ulanov5c5c4e42017-10-19 06:29:02223 "cast_audio_backend_unittests": {
224 "label": "//chromecast/media/cma/backend:cast_audio_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 },
Sergey Ulanov3bf34482017-10-30 21:30:50239 "cast_junit_test_lists": {
240 "label": "//chromecast:cast_junit_test_lists",
241 "type": "additional_compile_target",
242 },
dprankecb4a2e242016-09-19 01:13:14243 "cast_media_unittests": {
244 "label": "//chromecast/media:cast_media_unittests",
245 "type": "console_test_launcher",
246 },
247 "cast_shell": {
248 "label": "//chromecast:cast_shell",
249 "type": "additional_compile_target",
250 },
251 "cast_shell_apk": {
252 "label": "//chromecast:cast_shell_apk",
253 "type": "additional_compile_target",
254 },
alokpe3bd5ed2016-11-16 15:57:10255 "cast_shell_browsertests": {
256 "label": "//chromecast:cast_shell_browsertests",
dprankecb4a2e242016-09-19 01:13:14257 "type": "console_test_launcher",
258 },
alokpe3bd5ed2016-11-16 15:57:10259 "cast_shell_unittests": {
260 "label": "//chromecast:cast_shell_unittests",
dpranke9f25f762016-11-15 23:40:36261 "type": "console_test_launcher",
262 },
Sergey Ulanov3bf34482017-10-30 21:30:50263 "cast_test_lists": {
264 "label": "//chromecast:cast_test_lists",
265 "type": "additional_compile_target",
266 },
dprankea55584f12015-07-22 00:52:47267 "cast_unittests": {
dprankea21b31b02015-07-24 21:42:00268 "label": "//media/cast:cast_unittests",
269 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47270 },
271 "cc_unittests": {
272 "label": "//cc:cc_unittests",
dpranke177c1e22015-07-22 23:07:43273 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47274 },
dprankecb4a2e242016-09-19 01:13:14275 "chrome": {
276 "label": "//chrome:chrome",
277 "type": "additional_compile_target",
278 },
grteec2afd2016-02-09 16:56:45279 "chrome_app_unittests": {
280 "label": "//chrome/test:chrome_app_unittests",
281 "type": "console_test_launcher",
282 },
Penny MacNeila9753d02017-10-02 16:57:45283 "chrome_elf_import_unittests": {
284 "label": "//chrome_elf:chrome_elf_import_unittests",
285 "type": "raw",
286 },
dprankea55584f12015-07-22 00:52:47287 "chrome_elf_unittests": {
288 "label": "//chrome_elf:chrome_elf_unittests",
thakise782a76f2016-02-16 15:47:35289 "type": "raw",
dprankea55584f12015-07-22 00:52:47290 },
dprankecb4a2e242016-09-19 01:13:14291 "chrome_junit_tests": {
292 "label": "//chrome/android:chrome_junit_tests",
293 "type": "junit_test",
294 },
295 "chrome_official_builder": {
296 "label": "//:chrome_official_builder",
297 "type": "additional_compile_target",
298 },
299 "chrome_official_builder_no_unittests": {
300 "label": "//:chrome_official_builder_no_unittests",
301 "type": "additional_compile_target",
302 },
303 "chrome_public_apk": {
304 "label": "//chrome/android:chrome_public_apk",
305 "type": "additional_compile_target",
306 },
jbudoricke3c4f95e2016-04-28 23:17:38307 "chrome_public_test_apk": {
agrieve2e039c22016-04-27 22:57:53308 "label": "//chrome/android:chrome_public_test_apk",
309 "type": "console_test_launcher",
310 },
bsheedy8d420112017-02-23 21:10:45311 "chrome_public_test_vr_apk": {
312 "label": "//chrome/android:chrome_public_test_vr_apk",
313 "type": "console_test_launcher",
314 },
jbudoricke3c4f95e2016-04-28 23:17:38315 "chrome_sync_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53316 "label": "//chrome/android:chrome_sync_shell_test_apk",
317 "type": "console_test_launcher",
318 },
dprankea55584f12015-07-22 00:52:47319 "chromedriver_unittests": {
320 "label": "//chrome/test/chromedriver:chromedriver_unittests",
dpranke1643d222015-07-27 22:22:08321 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47322 },
323 "chromeos_unittests": {
324 "label": "//chromeos:chromeos_unittests",
brettw6df3e8c42016-04-14 21:07:13325 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47326 },
khorimoto050da2c2017-06-16 18:49:36327 "chromeos_components_unittests": {
328 "label": "//chromeos/components:chromeos_components_unittests",
329 "type": "console_test_launcher",
330 },
maruel44522882016-08-04 17:59:11331 "chromevox_tests": {
332 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests",
333 "type": "windowed_test_launcher",
334 },
dprankecb4a2e242016-09-19 01:13:14335 "chromium_builder_asan": {
336 "label": "//:chromium_builder_asan",
337 "type": "additional_compile_target",
338 },
dprankecb4a2e242016-09-19 01:13:14339 "chromium_builder_perf": {
340 "label": "//:chromium_builder_perf",
341 "type": "additional_compile_target",
342 },
dprankecb4a2e242016-09-19 01:13:14343 "chromiumos_preflight": {
344 "label": "//:chromiumos_preflight",
345 "type": "additional_compile_target",
346 },
fgorski7c52dca2017-05-15 22:15:20347 "components_background_task_scheduler_junit_tests": {
348 "label": "//components/background_task_scheduler:components_background_task_scheduler_junit_tests",
349 "type": "junit_test",
350 },
dprankea55584f12015-07-22 00:52:47351 "components_browsertests": {
352 "label": "//components:components_browsertests",
dpranke1643d222015-07-27 22:22:08353 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47354 },
peter943bc63a2017-02-28 01:40:22355 "components_gcm_driver_junit_tests": {
356 "label": "//components/gcm_driver/android:components_gcm_driver_junit_tests",
357 "type": "junit_test",
358 },
dprankecb4a2e242016-09-19 01:13:14359 "components_invalidation_impl_junit_tests": {
360 "label": "//components/invalidation/impl:components_invalidation_impl_junit_tests",
361 "type": "junit_test",
362 },
363 "components_policy_junit_tests": {
364 "label": "//components/policy/android:components_policy_junit_tests",
365 "type": "junit_test",
366 },
dprankea55584f12015-07-22 00:52:47367 "components_unittests": {
368 "label": "//components:components_unittests",
dpranke1643d222015-07-27 22:22:08369 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47370 },
aberent1b0987f2017-01-25 09:25:49371 "components_variations_junit_tests": {
372 "label": "//components/variations/android:components_variations_junit_tests",
373 "type": "junit_test",
374 },
dprankecb4a2e242016-09-19 01:13:14375 "components_web_restrictions_junit_tests": {
376 "label": "//components/web_restrictions:components_web_restrictions_junit_tests",
377 "type": "junit_test",
378 },
dprankea55584f12015-07-22 00:52:47379 "compositor_unittests": {
380 "label": "//ui/compositor:compositor_unittests",
dpranke177c1e22015-07-22 23:07:43381 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47382 },
383 "content_browsertests": {
384 "label": "//content/test:content_browsertests",
dpranke1643d222015-07-27 22:22:08385 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47386 },
dprankecb4a2e242016-09-19 01:13:14387 "content_junit_tests": {
388 "label": "//content/public/android:content_junit_tests",
389 "type": "junit_test",
390 },
Wezf043d562017-10-27 22:03:00391 "content_shell": {
392 "label": "//content/shell:content_shell",
393 "type": "raw",
394 },
jochen0426747e2017-02-09 17:01:19395 "content_shell_crash_test": {
396 "label": "//content/shell:content_shell_crash_test",
397 "type": "script",
398 "script": "//testing/scripts/content_shell_crash_test.py",
399 },
jbudoricke3c4f95e2016-04-28 23:17:38400 "content_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53401 "label": "//content/shell/android:content_shell_test_apk",
402 "type": "console_test_launcher",
403 },
dprankea55584f12015-07-22 00:52:47404 "content_unittests": {
405 "label": "//content/test:content_unittests",
dpranke1643d222015-07-27 22:22:08406 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47407 },
408 "courgette_unittests": {
409 "label": "//courgette:courgette_unittests",
thakis6e0c3f82016-02-11 04:33:59410 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47411 },
Mark Mentovai1782adb2017-11-08 05:11:27412 "crashpad_tests": {
413 "label": "//third_party/crashpad/crashpad:crashpad_tests",
Nico Weber00a06542017-10-27 19:20:10414 "type": "console_test_launcher",
415 },
dprankecb4a2e242016-09-19 01:13:14416 "cronet_package": {
417 "label": "//components/cronet/android:cronet_package",
418 "type": "additional_compile_target",
419 },
John Budorick23704fa2017-08-24 14:42:34420 "cronet_sample_test_apk": {
421 "label": "//components/cronet/android:cronet_sample_test_apk",
422 "type": "console_test_launcher",
423 },
424 "cronet_smoketests_missing_native_library_instrumentation_apk": {
425 "label": "//components/cronet/android:cronet_smoketests_missing_native_library_instrumentation_apk",
426 "type": "console_test_launcher",
427 },
428 "cronet_smoketests_platform_only_instrumentation_apk": {
429 "label": "//components/cronet/android:cronet_smoketests_platform_only_instrumentation_apk",
430 "type": "console_test_launcher",
431 },
gcasto1821cea42016-10-05 17:50:45432 "cronet_test": {
gcasto25c8da8e2016-10-26 23:42:40433 "label": "//components/cronet/ios/test:cronet_test",
gcasto1821cea42016-10-05 17:50:45434 "type": "raw",
435 },
dprankecb4a2e242016-09-19 01:13:14436 "cronet_test_instrumentation_apk": {
437 "label": "//components/cronet/android:cronet_test_instrumentation_apk",
438 "type": "additional_compile_target",
439 },
John Budorick23704fa2017-08-24 14:42:34440 "cronet_unittests": {
441 "label": "//components/cronet/android:cronet_unittests",
442 "type": "console_test_launcher",
443 },
dprankea55584f12015-07-22 00:52:47444 "crypto_unittests": {
445 "label": "//crypto:crypto_unittests",
dpranke1643d222015-07-27 22:22:08446 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47447 },
448 "dbus_unittests": {
449 "label": "//dbus:dbus_unittests",
maruel44522882016-08-04 17:59:11450 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47451 },
mcasaseddfbeb2017-05-10 04:47:49452 "device_junit_tests": {
453 "label": "//device:device_junit_tests",
454 "type": "junit_test",
455 },
dprankea55584f12015-07-22 00:52:47456 "device_unittests": {
457 "label": "//device:device_unittests",
dpranke1643d222015-07-27 22:22:08458 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47459 },
chenwilliam2ee4d24c92016-11-21 20:41:44460 "devtools_closure_compile": {
461 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile",
462 "type": "script",
chenwilliam56a90382016-12-09 02:16:28463 "script": "//testing/scripts/run_devtools_check.py",
chenwilliam2ee4d24c92016-11-21 20:41:44464 "args": [
465 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py",
466 ],
467 },
chenwilliam56a90382016-12-09 02:16:28468 "devtools_eslint": {
469 "label": "//third_party/WebKit/Source/devtools:devtools_eslint",
470 "type": "script",
471 "script": "//testing/scripts/run_devtools_check.py",
472 "args": [
473 "../../third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py",
474 ],
475 },
dprankea55584f12015-07-22 00:52:47476 "display_unittests": {
477 "label": "//ui/display:display_unittests",
dpranke1643d222015-07-27 22:22:08478 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47479 },
mikecaseba2be202017-03-10 18:14:24480 "dump_syms" : {
Mark Mentovaiebb9ddd62017-09-25 17:24:41481 "label": "//third_party/breakpad:dump_syms",
mikecaseba2be202017-03-10 18:14:24482 "type": "additional_compile_target",
483 },
dprankea55584f12015-07-22 00:52:47484 "events_unittests": {
485 "label": "//ui/events:events_unittests",
dprankef497c7962015-07-31 19:46:23486 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47487 },
oshima2a44e112016-06-23 17:59:18488 "exo_unittests": {
489 "label": "//components/exo:exo_unittests",
490 "type": "windowed_test_launcher",
491 },
dprankea55584f12015-07-22 00:52:47492 "extensions_browsertests": {
493 "label": "//extensions:extensions_browsertests",
dprankef497c7962015-07-31 19:46:23494 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47495 },
496 "extensions_unittests": {
497 "label": "//extensions:extensions_unittests",
dprankef497c7962015-07-31 19:46:23498 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47499 },
erg716b6172016-03-18 18:30:29500 "filesystem_service_unittests": {
erg4652931e2016-04-27 22:15:40501 "label": "//components/filesystem:filesystem_service_unittests",
erg716b6172016-03-18 18:30:29502 "type": "console_test_launcher",
503 },
dprankea55584f12015-07-22 00:52:47504 "gcm_unit_tests": {
505 "label": "//google_apis/gcm:gcm_unit_tests",
dprankef497c7962015-07-31 19:46:23506 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47507 },
508 "gfx_unittests": {
509 "label": "//ui/gfx:gfx_unittests",
pcc9c98ed22017-06-29 22:16:11510 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47511 },
jochen656a7c92015-12-08 00:56:45512 "gin_unittests": {
513 "label": "//gin:gin_unittests",
514 "type": "console_test_launcher",
515 },
dprankedbdd9d82015-08-12 21:18:18516 "gles2_conform_test": {
517 "label": "//gpu/gles2_conform_support:gles2_conform_test",
518 "type": "console_test_launcher",
519 },
520 "gl_tests": {
521 "label": "//gpu:gl_tests",
522 "type": "raw",
523 "args": [],
524 },
dprankea55584f12015-07-22 00:52:47525 "gl_unittests": {
526 "label": "//ui/gl:gl_unittests",
pcc381297ba2017-06-30 18:37:07527 "type": "console_test_launcher",
kylechar50abf5a2016-11-29 16:03:07528 },
kylechar39705682017-01-19 14:37:23529 "gl_unittests_ozone": {
530 "label": "//ui/gl:gl_unittests_ozone",
vmpstrfaa78922016-12-21 02:12:21531 "label_type": "group",
532 "type": "windowed_test_launcher",
533 "executable": "gl_unittests",
vmpstrfaa78922016-12-21 02:12:21534 },
dprankea55584f12015-07-22 00:52:47535 "gn_unittests": {
536 "label": "//tools/gn:gn_unittests",
pcc9c98ed22017-06-29 22:16:11537 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47538 },
539 "google_apis_unittests": {
540 "label": "//google_apis:google_apis_unittests",
dpranke358c73c2015-08-25 20:43:30541 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47542 },
markdittmer2ce53ac2016-05-05 16:21:02543 "gpu_ipc_service_unittests": {
544 "label": "//gpu/ipc/service:gpu_ipc_service_unittests",
545 "type": "windowed_test_launcher",
546 },
dprankea55584f12015-07-22 00:52:47547 "gpu_unittests": {
548 "label": "//gpu:gpu_unittests",
dprankef497c7962015-07-31 19:46:23549 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47550 },
dprankecb4a2e242016-09-19 01:13:14551 "headless_lib": {
552 "label": "//headless:headless_lib",
553 "type": "additional_compile_target",
554 },
perezjub8b863a02016-04-15 09:20:00555 "headless_browsertests": {
556 "label": "//headless:headless_browsertests",
557 "type": "console_test_launcher",
558 },
dprankecb4a2e242016-09-19 01:13:14559 "headless_shell": {
560 "label": "//headless:headless_shell",
561 "type": "additional_compile_target",
562 },
563 "headless_tests": {
564 "label": "//headless:headless_tests",
565 "type": "additional_compile_target",
566 },
perezjub8b863a02016-04-15 09:20:00567 "headless_unittests": {
568 "label": "//headless:headless_unittests",
569 "type": "console_test_launcher",
570 },
dprankea55584f12015-07-22 00:52:47571 "installer_util_unittests": {
572 "label": "//chrome/installer/util:installer_util_unittests",
thakis33fc54c2016-02-13 01:51:16573 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47574 },
anantaf2e54a92016-05-28 00:39:16575 "install_static_unittests": {
576 "label": "//chrome/install_static:install_static_unittests",
577 "type": "console_test_launcher",
578 },
dprankea55584f12015-07-22 00:52:47579 "interactive_ui_tests": {
580 "label": "//chrome/test:interactive_ui_tests",
dprankef497c7962015-07-31 19:46:23581 "type": "windowed_test_launcher",
Greg Thompsoncea44ff2017-10-11 12:22:53582 "args": [
583 "--snapshot-output-dir=${ISOLATED_OUTDIR}",
584 ],
dprankea55584f12015-07-22 00:52:47585 },
smutb99217a2017-03-02 23:45:24586 "ios_chrome_integration_egtests": {
587 "label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
588 "type": "raw",
589 "args": [],
590 },
Randall Raymondaeed64d2017-07-20 18:11:26591 "ios_chrome_payments_egtests": {
592 "label": "//ios/chrome/test/earl_grey:ios_chrome_payments_egtests",
593 "type": "raw",
594 "args": [
595 "--enable-features=WebPayments",
596 ],
597 },
baxley491ee982017-03-31 15:17:49598 "ios_chrome_reading_list_egtests": {
599 "label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
600 "type": "raw",
601 "args": [],
602 },
smutb99217a2017-03-02 23:45:24603 "ios_chrome_settings_egtests": {
604 "label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
605 "type": "raw",
606 "args": [],
607 },
608 "ios_chrome_smoke_egtests": {
609 "label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
610 "type": "raw",
611 "args": [],
612 },
613 "ios_chrome_ui_egtests": {
614 "label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
615 "type": "raw",
Sergio Collazosb54ae332017-07-19 20:54:16616 "args": [],
smutb99217a2017-03-02 23:45:24617 },
dprankecb4a2e242016-09-19 01:13:14618 "ios_chrome_unittests": {
sdefresnee51457b2016-12-15 09:11:44619 "label": "//ios/chrome/test:ios_chrome_unittests",
dprankecb4a2e242016-09-19 01:13:14620 "type": "raw",
621 "args": [],
622 },
smutb99217a2017-03-02 23:45:24623 "ios_chrome_web_egtests": {
624 "label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
625 "type": "raw",
626 "args": [],
627 },
Mike Dougherty898a6902017-07-13 16:47:33628 "ios_components_unittests": {
629 "label": "//ios/components:ios_components_unittests",
630 "type": "raw",
631 "args": [],
632 },
dprankecb4a2e242016-09-19 01:13:14633 "ios_net_unittests": {
634 "label": "//ios/net:ios_net_unittests",
635 "type": "raw",
636 "args": [],
637 },
smutb99217a2017-03-02 23:45:24638 "ios_showcase_egtests": {
639 "label": "//ios/showcase:ios_showcase_egtests",
640 "type": "raw",
641 "args": [],
642 },
dprankecb4a2e242016-09-19 01:13:14643 "ios_web_inttests": {
644 "label": "//ios/web:ios_web_inttests",
645 "type": "raw",
646 "args": [],
647 },
smutb99217a2017-03-02 23:45:24648 "ios_web_shell_egtests": {
649 "label": "//ios/web/shell/test:ios_web_shell_egtests",
650 "type": "raw",
651 "args": [],
652 },
dprankecb4a2e242016-09-19 01:13:14653 "ios_web_unittests": {
654 "label": "//ios/web:ios_web_unittests",
655 "type": "raw",
656 "args": [],
657 },
Mike Dougherty33e75bbc2017-07-13 16:32:26658 "ios_web_view_inttests": {
659 "label": "//ios/web_view/test:ios_web_view_inttests",
660 "type": "raw",
661 "args": [],
662 },
Eugene But681f7d8e2017-09-11 18:18:43663 "ios_web_view_unittests": {
664 "label": "//ios/web_view:ios_web_view_unittests",
665 "type": "raw",
666 "args": [],
667 },
dprankea55584f12015-07-22 00:52:47668 "ipc_tests": {
669 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43670 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47671 },
672 "jingle_unittests": {
673 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23674 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47675 },
dprankecb4a2e242016-09-19 01:13:14676 "junit_unit_tests": {
677 "label": "//testing/android/junit:junit_unit_tests",
678 "type": "junit_test",
679 },
dprankea55584f12015-07-22 00:52:47680 "keyboard_unittests": {
681 "label": "//ui/keyboard:keyboard_unittests",
yhanadafa661282017-07-13 03:09:11682 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47683 },
mfomitchevee01a832017-04-18 20:55:02684 "latency_unittests": {
685 "label": "//ui/latency:latency_unittests",
686 "type": "console_test_launcher",
687 },
ergf1f689f2016-03-22 00:51:20688 "leveldb_service_unittests": {
689 "label": "//components/leveldb:leveldb_service_unittests",
690 "type": "console_test_launcher",
691 },
kjellanderd5fe9bf2017-04-13 09:05:02692 "libjingle_xmpp_unittests": {
693 "label": "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
694 "type": "console_test_launcher",
695 },
zengster7ec9ff52016-08-10 00:18:41696 "mac_installer_unittests": {
697 "label": "//chrome/installer/mac/app:mac_installer_unittests",
698 "type": "console_test_launcher",
699 },
dprankecb4a2e242016-09-19 01:13:14700 "mash:all" : {
701 "label": "//mash:all",
702 "type": "additional_compile_target",
703 },
dprankea55584f12015-07-22 00:52:47704 "media_unittests": {
705 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23706 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47707 },
xhwang9c958fd2016-12-05 23:17:16708 "media_service_unittests": {
709 "label": "//media/mojo/services:media_service_unittests",
bena5d1cd42016-04-29 22:59:53710 "type": "console_test_launcher",
711 },
hubbe2dc5a592015-09-23 23:29:31712 "media_blink_unittests": {
713 "label": "//media/blink:media_blink_unittests",
714 "type": "windowed_test_launcher",
715 },
cliffordcheng24894e8a2016-12-05 22:31:11716 "media_router_perf_tests": {
717 "label": "//chrome/test/media_router:media_router_perf_tests",
718 "type": "script",
cliffordcheng28deea192017-01-14 04:21:50719 "script": "//chrome/test/media_router/telemetry/run_benchmark.py",
cliffordcheng24894e8a2016-12-05 22:31:11720 "args": [
721 "--browser=release",
722 "--also-run-disabled-tests",
723 "-v",
724 "--use-live-sites",
725 "--output-format=chartjson",
726 "--output-dir=${ISOLATED_OUTDIR}",
727 ],
728 },
cliffordchengf7655ed2016-11-29 03:07:55729 "media_router_tests": {
730 "label": "//chrome/test/media_router:media_router_tests",
731 "type": "script",
732 "script": "//chrome/test/media_router/internal/media_router_tests.py",
733 "args": [
734 "--extension",
735 "mr_extension/",
736 "--test_binary",
737 "./browser_tests",
738 ],
739 },
martinissee599af2017-02-06 23:19:43740 "microdump_stackwalk" : {
Mark Mentovaiebb9ddd62017-09-25 17:24:41741 "label": "//third_party/breakpad:microdump_stackwalk",
martinissee599af2017-02-06 23:19:43742 "type": "additional_compile_target",
743 },
dprankea55584f12015-07-22 00:52:47744 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30745 "label": "//media/midi:midi_unittests",
746 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47747 },
dprankecb4a2e242016-09-19 01:13:14748 "mini_installer": {
749 "label": "//chrome/installer/mini_installer:mini_installer",
750 "type": "additional_compile_target",
751 },
dprankea55584f12015-07-22 00:52:47752 "mojo_common_unittests": {
753 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23754 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47755 },
yzshen1d7a11c2016-01-27 00:16:32756 "mojo_js_unittests": {
alokp210e57b22017-01-20 20:36:26757 "label": "//mojo/edk/js/tests:mojo_js_unittests",
yzshen1d7a11c2016-01-27 00:16:32758 "type": "console_test_launcher",
759 },
dprankea55584f12015-07-22 00:52:47760 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08761 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23762 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47763 },
dprankea55584f12015-07-22 00:52:47764 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08765 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35766 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47767 },
dprankea55584f12015-07-22 00:52:47768 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08769 "label": "//mojo/edk/system:mojo_system_unittests",
sammc98ecd4a2016-04-29 01:59:21770 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47771 },
sammc9b709032016-08-12 00:35:24772 "mojo_test_apk": {
773 "label": "//mojo/android:mojo_test_apk",
774 "type": "console_test_launcher",
775 },
Andrew Grieve860b1552017-09-06 14:50:06776 "monochrome_static_initializers": {
777 "label": "//chrome/android:monochrome_static_initializers",
778 "type": "additional_compile_target",
779 },
dprankea55584f12015-07-22 00:52:47780 "message_center_unittests": {
781 "label": "//ui/message_center:message_center_unittests",
dpranke94c6fb22016-06-10 01:55:08782 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47783 },
Alexei Svitkineac3352b2017-10-06 13:46:30784 "metrics_python_tests": {
785 "label": "//tools/metrics:metrics_python_tests",
786 "type": "script",
787 "script": "//testing/scripts/run_isolated_script_test.py",
788 "args": [
789 "../../tools/metrics/metrics_python_tests.py"
790 ]
791 },
sky130827232015-11-23 20:41:08792 "mash_unittests": {
793 "label": "//mash:mash_unittests",
sky57052d022016-04-29 17:18:23794 "type": "windowed_test_launcher",
sky97b65592015-11-02 20:08:25795 },
maruel44522882016-08-04 17:59:11796 "nacl_helper_nonsfi_unittests": {
797 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
798 "type": "raw",
799 "args": [],
800 },
dprankea55584f12015-07-22 00:52:47801 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13802 "label": "//components/nacl/loader:nacl_loader_unittests",
pcc9c98ed22017-06-29 22:16:11803 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47804 },
dprankecb4a2e242016-09-19 01:13:14805 "net_junit_tests": {
806 "label": "//net/android:net_junit_tests",
807 "type": "junit_test",
808 },
xunjielibdefc4f2017-06-07 18:58:59809 "net_perftests": {
810 "label": "//net:net_perftests",
811 "type": "script",
812 "script": "//testing/scripts/run_gtest_perf_test.py",
813 "args": [
814 "net_perftests",
815 ],
816 },
dprankea55584f12015-07-22 00:52:47817 "net_unittests": {
818 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23819 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47820 },
dprankecb4a2e242016-09-19 01:13:14821 "next_version_mini_installer": {
822 "label": "//chrome/installer/mini_installer:next_version_mini_installer",
823 "type": "additional_compile_target",
824 },
dprankea55584f12015-07-22 00:52:47825 "ozone_unittests": {
826 "label": "//ui/ozone:ozone_unittests",
maruel44522882016-08-04 17:59:11827 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47828 },
kylechar4fab9212016-08-24 21:09:10829 "ozone_gl_unittests": {
830 "label": "//ui/ozone/gl:ozone_gl_unittests",
831 "type": "console_test_launcher",
832 },
art-snakea84bce92016-10-27 19:16:49833 "pdf_unittests": {
834 "label": "//pdf:pdf_unittests",
835 "type": "console_test_launcher",
836 },
Michael Achenbach377951a2017-07-12 09:15:33837 "pdfium_test": {
838 "label": "//third_party/pdfium/samples:pdfium_test",
839 "type": "additional_compile_target",
840 },
841 "postmortem-metadata": {
842 "label": "//v8:postmortem-metadata",
843 "type": "additional_compile_target",
844 },
dprankea55584f12015-07-22 00:52:47845 "ppapi_unittests": {
846 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48847 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47848 },
849 "printing_unittests": {
850 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23851 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47852 },
853 "remoting_unittests": {
854 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23855 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47856 },
dprankea55584f12015-07-22 00:52:47857 "sandbox_linux_unittests": {
858 "label": "//sandbox/linux:sandbox_linux_unittests",
pcc9c98ed22017-06-29 22:16:11859 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47860 },
861 "sandbox_mac_unittests": {
862 "label": "//sandbox/mac:sandbox_mac_unittests",
rsesek172b7352016-05-10 22:27:26863 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47864 },
865 "sbox_integration_tests": {
866 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16867 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47868 },
869 "sbox_unittests": {
870 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16871 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47872 },
873 "sbox_validation_tests": {
874 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16875 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47876 },
bendb45a532016-10-15 01:22:09877 "service_manager_unittests": {
rockot734fb662016-10-15 16:41:30878 "label": "//services/service_manager/tests:service_manager_unittests",
bendb45a532016-10-15 01:22:09879 "type": "console_test_launcher",
880 },
ke.heaf8ead22017-05-13 03:54:30881 "service_junit_tests": {
882 "label": "//services:service_junit_tests",
883 "type": "junit_test",
884 },
ergcd559ca2017-05-26 23:43:38885 "services_unittests": {
886 "label": "//services:services_unittests",
ergf4938cd2017-05-19 01:42:08887 "type": "windowed_test_launcher",
rockot8cdd37a2017-01-28 02:53:31888 },
dprankea55584f12015-07-22 00:52:47889 "setup_unittests": {
890 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59891 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47892 },
893 "skia_unittests": {
894 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43895 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47896 },
eseckler7233c1a72017-01-25 15:07:54897 "snapshot_unittests": {
898 "label": "//ui/snapshot:snapshot_unittests",
899 "type": "windowed_test_launcher",
900 },
dprankea55584f12015-07-22 00:52:47901 "sql_unittests": {
902 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43903 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47904 },
pwnall008c0272016-10-14 16:54:04905 "storage_unittests": {
pwnall9f1622a2017-04-21 09:39:02906 "label": "//storage:storage_unittests",
pwnall008c0272016-10-14 16:54:04907 "type": "console_test_launcher",
908 },
sugoic9c93b52017-01-12 16:11:02909 "swiftshader_unittests": {
910 "label": "//third_party/swiftshader/tests/unittests:swiftshader_unittests",
911 "type": "raw",
912 "args": [],
913 },
dprankea55584f12015-07-22 00:52:47914 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23915 "label": "//chrome/test:sync_integration_tests",
916 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47917 },
Benjamin Pastene334ba252017-09-29 02:25:05918 "system_webview_apk": {
919 "label": "//android_webview:system_webview_apk",
920 "type": "additional_compile_target",
921 },
Jinsuk Kim3f7c90c2017-07-16 19:43:50922 "system_webview_shell_layout_test_apk": {
923 "label": "//android_webview/tools/system_webview_shell:system_webview_shell_layout_test_apk",
924 "type": "console_test_launcher",
925 },
kbr48321ca02016-06-23 03:24:08926 "telemetry_gpu_integration_test": {
927 "label": "//chrome/test:telemetry_gpu_integration_test",
928 "type": "script",
929 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
930 "args": [
931 "../../content/test/gpu/run_gpu_integration_test.py",
932 ],
933 },
nednguyenfbee71a62015-10-01 12:41:13934 "telemetry_gpu_unittests": {
935 "label": "//chrome/test:telemetry_gpu_unittests",
936 "type": "script",
937 "script": "//testing/scripts/run_telemetry_as_googletest.py",
938 "args": [
939 "../../content/test/gpu/run_unittests.py",
940 "-v",
941 ],
942 },
nednguyen9ce21622015-10-08 12:30:48943 "telemetry_perf_unittests": {
944 "label": "//chrome/test:telemetry_perf_unittests",
945 "type": "script",
946 "script": "//testing/scripts/run_telemetry_as_googletest.py",
947 "args": [
nednguyen9ce21622015-10-08 12:30:48948 "../../tools/perf/run_tests",
949 "-v",
950 ],
951 },
eyaichd158d952016-09-02 13:23:41952 "telemetry_perf_tests": {
953 "label": "//chrome/test:telemetry_perf_tests",
954 "type": "script",
955 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
956 "args": [
957 "../../tools/perf/run_benchmark",
958 ],
959 },
Stephen Martinis0b18efa102017-09-25 22:55:12960 "telemetry_perf_tests_new": {
Stephen Martinisf393d242017-10-06 23:32:22961 "label": "//chrome/test:telemetry_perf_tests_new",
Stephen Martinis0b18efa102017-09-25 22:55:12962 "type": "script",
963 "script": "//testing/scripts/run_multiple_telemetry_benchmarks_as_googletest.py",
964 "args": [
965 "../../tools/perf/run_benchmark",
966 ],
967 },
Stephen Martinisb6eb4392017-06-14 20:40:25968 "telemetry_perf_webview_tests": {
969 "label": "//chrome/test:telemetry_perf_webview_tests",
970 "type": "script",
971 "script": "//third_party/catapult/devil/devil/android/tools/system_app.py",
972 "args": [
973 "remove",
Stephen Martinis2bb854b2017-06-16 22:30:16974 "--package",
975 "com.android.webview",
976 "com.google.android.webview",
Stephen Martinisb6eb4392017-06-14 20:40:25977 "-v",
978 "--",
Stephen Martinis179506992017-06-16 23:32:48979 "../../testing/scripts/run_telemetry_benchmark_as_googletest.py",
Stephen Martinisb6eb4392017-06-14 20:40:25980 "../../tools/perf/run_benchmark",
981 ],
982 },
nednguyen8365ba52015-11-18 15:52:46983 "telemetry_unittests": {
984 "label": "//chrome/test:telemetry_unittests",
985 "type": "script",
986 "script": "//testing/scripts/run_telemetry_as_googletest.py",
987 "args": [
988 "--xvfb",
nednguyena91919182016-01-13 18:31:53989 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46990 "-v",
nednguyene882052d2016-12-13 12:36:41991 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
992 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
993 "--jobs=1",
nednguyen8365ba52015-11-18 15:52:46994 "--chrome-root",
995 "../../",
996 ],
997 },
Ramin Halavatide8f7f72017-07-10 10:31:38998 "traffic_annotation_auditor_unittests": {
999 "label":
1000 "//tools/traffic_annotation/auditor:traffic_annotation_auditor_unittests",
1001 "type": "console_test_launcher",
1002 },
eyaich7c79b912016-10-29 00:39:251003 "cc_perftests": {
1004 "label": "//cc:cc_perftests",
1005 "type": "script",
1006 "script": "//testing/scripts/run_gtest_perf_test.py",
1007 "args": [
1008 "cc_perftests",
nednguyen6451d7d2017-05-09 14:37:541009 "--adb-path",
1010 "src/third_party/android_tools/sdk/platform-tools/adb"
eyaich7c79b912016-10-29 00:39:251011 ],
1012 },
crouleau98e395312017-01-12 01:29:481013 "media_perftests": {
1014 "label": "//media:media_perftests",
1015 "type": "script",
1016 "script": "//testing/scripts/run_gtest_perf_test.py",
1017 "args": [
1018 "media_perftests",
1019 ],
1020 },
eyaichd3e023c12016-11-14 22:41:011021 "load_library_perf_tests": {
1022 "label": "//chrome/test:load_library_perf_tests",
1023 "type": "script",
1024 "script": "//testing/scripts/run_gtest_perf_test.py",
1025 "args": [
1026 "load_library_perf_tests",
1027 "--test-launcher-print-test-stdio=always"
1028 ],
1029 },
1030 "tracing_perftests": {
1031 "label": "//components/tracing:tracing_perftests",
1032 "type": "script",
1033 "script": "//testing/scripts/run_gtest_perf_test.py",
1034 "args": [
1035 "tracing_perftests",
nednguyen6451d7d2017-05-09 14:37:541036 "--test-launcher-print-test-stdio=always",
1037 "--adb-path",
1038 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:011039 ],
1040 },
1041 "gpu_perftests": {
1042 "label": "//gpu:gpu_perftests",
1043 "type": "script",
1044 "script": "//testing/scripts/run_gtest_perf_test.py",
1045 "args": [
1046 "gpu_perftests",
1047 "--adb-path",
nednguyen6451d7d2017-05-09 14:37:541048 "src/third_party/android_tools/sdk/platform-tools/adb",
eyaichd3e023c12016-11-14 22:41:011049 ],
1050 },
Jamie Madill8baa54752017-10-24 17:39:181051 "command_buffer_perftests": {
1052 "label": "//gpu:command_buffer_perftests",
1053 "type": "script",
1054 "script": "//testing/scripts/run_gtest_perf_test.py",
1055 "args": [
1056 "command_buffer_perftests",
1057 "--adb-path",
1058 "src/third_party/android_tools/sdk/platform-tools/adb",
1059 ],
1060 },
eyaichd3e023c12016-11-14 22:41:011061 "angle_perftests": {
eyaich87225102016-11-15 15:15:171062 "label": "//chrome/test:angle_perftests",
eyaichd3e023c12016-11-14 22:41:011063 "type": "script",
1064 "script": "//testing/scripts/run_gtest_perf_test.py",
1065 "args": [
1066 "angle_perftests",
1067 "--test-launcher-print-test-stdio=always",
1068 "--test-launcher-jobs=1"
1069 ],
1070 },
bsheedyf146f6182017-10-18 22:49:511071 "vr_common_perftests": {
1072 "label": "//chrome/browser/vr:vr_common_perftests",
1073 "type": "script",
1074 "script": "//testing/scripts/run_gtest_perf_test.py",
1075 "args": [
1076 "vr_common_perftests",
1077 "--adb-path",
1078 "src/third_party/android_tools/sdk/platform-tools/adb",
1079 ]
1080 },
eyaichd3e023c12016-11-14 22:41:011081 "performance_browser_tests": {
eyaich87225102016-11-15 15:15:171082 "label": "//chrome/test:performance_browser_tests",
eyaichd3e023c12016-11-14 22:41:011083 "type": "script",
1084 "script": "//testing/scripts/run_gtest_perf_test.py",
1085 "args": [
1086 "performance_browser_tests",
1087 "--test-launcher-print-test-stdio=always",
Yuri Wiitalaaa998e12017-10-26 06:42:131088 # TODO(crbug.com/759866): Figure out why CastV2PerformanceTest/0 sometimes
1089 # takes 15-30 seconds to start up and, once fixed, remove this workaround
1090 # (extends the watchdog timeout to 2 minutes, normally 30 seconds).
1091 "--test-launcher-timeout=120000",
eyaichd3e023c12016-11-14 22:41:011092 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
1093 "--test-launcher-jobs=1",
1094 "--enable-gpu"
1095 ],
1096 },
tapted5f112f292016-12-11 23:59:401097 "native_theme_unittests": {
1098 "label": "//ui/native_theme:native_theme_unittests",
1099 "type": "windowed_test_launcher",
1100 },
pkotwicz280f66602015-11-04 02:51:551101 "ui_android_unittests": {
1102 "label": "//ui/android:ui_android_unittests",
1103 "type": "console_test_launcher",
1104 },
dprankea55584f12015-07-22 00:52:471105 "ui_base_unittests": {
1106 "label": "//ui/base:ui_base_unittests",
1107 "type": "windowed_test_launcher",
1108 },
1109 "ui_chromeos_unittests": {
1110 "label": "//ui/chromeos:ui_chromeos_unittests",
maruel44522882016-08-04 17:59:111111 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471112 },
yoshiki8e2ddbb2016-03-10 07:11:221113 "ui_arc_unittests": {
1114 "label": "//ui/arc:ui_arc_unittests",
yoshiki4e9fc102017-05-25 17:46:071115 "type": "windowed_test_launcher",
yoshiki8e2ddbb2016-03-10 07:11:221116 },
dprankecb4a2e242016-09-19 01:13:141117 "ui_junit_tests": {
1118 "label": "//ui/android:ui_junit_tests",
1119 "type": "junit_test",
1120 },
dprankea55584f12015-07-22 00:52:471121 "ui_touch_selection_unittests": {
1122 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:001123 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471124 },
1125 "unit_tests": {
1126 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:231127 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471128 },
1129 "url_unittests": {
1130 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:431131 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471132 },
jbaumand69f1172017-01-10 01:46:491133 "video_decode_accelerator_unittest": {
1134 "label": "//media/gpu:video_decode_accelerator_unittest",
1135 "type": "raw",
1136 "args": [],
1137 },
qyearsley88bc4802016-05-17 18:02:341138 "views_mus_interactive_ui_tests": {
1139 "label": "//ui/views/mus:views_mus_interactive_ui_tests",
1140 "type": "windowed_test_launcher",
1141 },
msw2e3ff862016-02-26 02:20:091142 "views_mus_unittests": {
1143 "label": "//ui/views/mus:views_mus_unittests",
1144 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471145 },
1146 "views_unittests": {
1147 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:101148 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471149 },
kylechara16d2572017-07-10 17:41:321150 "viz_unittests": {
1151 "label": "//components/viz:viz_unittests",
1152 "type": "windowed_test_launcher",
1153 },
Christopher Grant193648b2017-06-07 15:08:361154 "vr_common_unittests": {
Ian Vollick4e26ac322017-07-11 14:58:211155 "label": "//chrome/browser/vr:vr_common_unittests",
bsheedy4b23d0b2016-09-20 23:35:031156 "type": "console_test_launcher",
1157 },
John Budoricked6643092017-11-06 16:58:581158 "vr_testapp": {
1159 "label": "//chrome/browser/vr:vr_testapp",
1160 "type": "additional_compile_target",
1161 },
Peng Huang712a24522017-09-27 16:24:251162 "wayland_client_perftests": {
1163 "label": "//components/exo/wayland:wayland_client_perftests",
1164 "type": "windowed_test_launcher",
1165 },
dprankecb4a2e242016-09-19 01:13:141166 "webapk_client_junit_tests": {
1167 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
1168 "type": "junit_test",
1169 },
1170 "webapk_shell_apk_junit_tests": {
dpranke43e6a6d2016-09-19 02:10:241171 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
dprankecb4a2e242016-09-19 01:13:141172 "type": "junit_test",
1173 },
tansell88df42592016-11-15 07:22:591174 "webkit_layout_tests": {
1175 "label": "//:webkit_layout_tests",
1176 "type": "script",
tansell0e6baaf22017-02-16 09:14:531177 "script": "//testing/scripts/run_isolated_script_test.py",
1178 "args": [
1179 "--xvfb",
1180 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1181 "--clobber-old-results",
1182 "--debug-rwt-logging",
1183 "--no-show-results",
1184 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1185 ],
1186 },
1187 "webkit_layout_tests_exparchive": {
1188 "label": "//:webkit_layout_tests_exparchive",
1189 "type": "script",
1190 "script": "//testing/scripts/run_isolated_script_test.py",
tansell88df42592016-11-15 07:22:591191 "args": [
1192 "--xvfb",
1193 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
tansell9ca24bfb2017-02-16 13:56:311194 "--seed", "4",
tansell88df42592016-11-15 07:22:591195 "--no-show-results",
tansell9ca24bfb2017-02-16 13:56:311196 "--clobber-old-results",
1197 "--exit-after-n-failures", "5000",
1198 "--exit-after-n-crashes-or-timeouts", "100",
1199 "--debug-rwt-logging",
tansell88df42592016-11-15 07:22:591200 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1201 ],
1202 },
Dirk Pranke43a5c812017-09-06 03:25:411203 "webkit_python_tests": {
1204 "label": "//:webkit_python_tests",
1205 "type": "script",
1206 "script": "//testing/scripts/run_isolated_script_test.py",
1207 "args": [
1208 "../../third_party/WebKit/Tools/Scripts/test-webkitpy"
1209 ]
1210 },
dprankea55584f12015-07-22 00:52:471211 "webkit_unit_tests": {
Nicholas Vernee6c400f2017-08-09 09:47:491212 "label": "//third_party/WebKit/Source/controller:webkit_unit_tests",
Dirk Pranke1b64ac442015-12-10 01:47:021213 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471214 },
ctzsmc6d96432017-05-11 05:48:311215 "webview_instrumentation_test_apk": {
1216 "label": "//android_webview/test:webview_instrumentation_test_apk",
1217 "type": "console_test_launcher",
1218 },
Jinsuk Kim3f7c90c2017-07-16 19:43:501219 "webview_ui_test_app_test_apk": {
1220 "label": "//android_webview/tools/automated_ui_tests:webview_ui_test_app_test_apk",
1221 "type": "console_test_launcher",
1222 },
dprankea55584f12015-07-22 00:52:471223 "wm_unittests": {
1224 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:001225 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471226 },
1227 "wtf_unittests": {
yutak6fbccaf2017-03-31 07:55:131228 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
Dirk Pranke1b64ac442015-12-10 01:47:021229 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471230 },
etiennep87edf212017-06-28 20:56:501231 "zucchini_unittests": {
rnk954f8222017-06-29 17:51:491232 "label": "//chrome/installer/zucchini:zucchini_unittests",
etiennep87edf212017-06-28 20:56:501233 "type": "console_test_launcher",
1234 },
dprankea55584f12015-07-22 00:52:471235}