blob: 4a3bb665b56469f1dabe6a95ba02d97d7dfa38d0 [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.
dprankedbdd9d82015-08-12 21:18:1833# "gpu_browser_test"
34# : the test is a subset of the browser_tests that will be run against
35# a real GPU.
dprankecb4a2e242016-09-19 01:13:1436# "additional_compile_target"
37# : this isn't actually a test, but we still need a mapping from the
38# ninja target to the GN label in order to analyze it.
39# "junit_test"
40# : this is a JUnit test.
dprankea55584f12015-07-22 00:52:4741# "raw"
42# : the test is a standalone executable; it may take an optional list of
dprankefe0d35e2016-02-05 02:43:5943# command line arguments in the "args" field, but otherwise needs no
dprankea55584f12015-07-22 00:52:4744# extra files or special handling.
dprankefe0d35e2016-02-05 02:43:5945# "script"
46# : the test is a python script; the path to the script is specified in
47# the "script" field.
dprankea55584f12015-07-22 00:52:4748# "unknown"
49# : (the default), which indicates that we don't know what the command line
50# needs to be (this is a fatal error).
dprankefe0d35e2016-02-05 02:43:5951#
52# The optional "executable" field can be used to override the name
53# of the binary to run. If the field is not specified, the binary
54# name will be assumed to be the same as the ninja build target name.
55# On Windows, ".exe" will be automatically appended if need be, so
56# the executable name (and target name) should not contain an ".exe".
57#
58# The optional "args" field can be used to append extra command line
59# args onto the command line determined by the "type". If not specified,
60# it defaults to an empty list (no extra args).
61#
62# The optional "label_type" field can be used in conjunction with
63# "type" == "console_test_launcher" or "type" == "windowed_test_launcher"
64# to indicate that even though the command line
65# to use follows the test_launcher patterns, the actual GN label refers
66# to a different type of thing (usually a "group") and so MB can find
67# the generated runtime files in the right place. This is used, for
68# example, in content_site_isolation_browsertests .
69#
70# The optional "script" field is used when "type" == "script", and
71# specifies the GN path to the corresponding python file, e.g.
72# "//testing/scripts/foo.py".
dprankea55584f12015-07-22 00:52:4773
74{
dprankecb4a2e242016-09-19 01:13:1475 "All": {
76 "label": "//:All",
77 "type": "additional_compile_target",
78 },
79 "All_syzygy": {
80 "label": "//:All_syzygy",
81 "type": "additional_compile_target",
82 },
dprankea55584f12015-07-22 00:52:4783 "accessibility_unittests": {
84 "label": "//ui/accessibility:accessibility_unittests",
dpranke177c1e22015-07-22 23:07:4385 "type": "raw",
86 "args": [],
dprankea55584f12015-07-22 00:52:4787 },
jbudoricke3c4f95e2016-04-28 23:17:3888 "android_webview_test_apk": {
agrieve2e039c22016-04-27 22:57:5389 "label": "//android_webview/test:android_webview_test_apk",
90 "type": "console_test_launcher",
91 },
jbudorick73567ae2016-02-09 00:17:2592 "android_webview_unittests": {
93 "label": "//android_webview/test:android_webview_unittests",
94 "type": "console_test_launcher",
95 },
jmadill9b384b782016-03-16 00:21:3296 "angle_deqp_egl_tests": {
97 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
98 "type": "raw",
99 "args": [],
100 },
cwallez18d5b4e2016-02-05 01:18:23101 "angle_deqp_gles2_tests": {
102 "label": "//third_party/angle/src/tests:angle_deqp_gles2_tests",
103 "type": "raw",
104 "args": [],
105 },
106 "angle_deqp_gles3_tests": {
107 "label": "//third_party/angle/src/tests:angle_deqp_gles3_tests",
108 "type": "raw",
109 "args": [],
110 },
geofflang366f3af12016-12-01 18:08:11111 "angle_deqp_gles31_tests": {
112 "label": "//third_party/angle/src/tests:angle_deqp_gles31_tests",
113 "type": "raw",
114 "args": [],
115 },
dpranke6abd8652015-08-28 03:21:11116 "angle_end2end_tests": {
dprankee35c4f72015-09-04 01:04:12117 "label": "//third_party/angle/src/tests:angle_end2end_tests",
dpranke6abd8652015-08-28 03:21:11118 "type": "raw",
119 "args": [],
120 },
ynovikov55e66c22017-02-16 15:45:37121 "angle_white_box_tests": {
122 "label": "//third_party/angle/src/tests:angle_white_box_tests",
123 "type": "raw",
124 "args": [],
125 },
dprankea55584f12015-07-22 00:52:47126 "angle_unittests": {
dprankee35c4f72015-09-04 01:04:12127 "label": "//third_party/angle/src/tests:angle_unittests",
dpranke177c1e22015-07-22 23:07:43128 "type": "raw",
129 "args": [],
dprankea55584f12015-07-22 00:52:47130 },
131 "app_list_unittests": {
132 "label": "//ui/app_list:app_list_unittests",
dprankea21b31b02015-07-24 21:42:00133 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47134 },
mfomitchevda899d82016-04-15 22:20:37135 "app_list_presenter_unittests": {
136 "label": "//ui/app_list/presenter:app_list_presenter_unittests",
mfomitchev216ff0b2016-04-06 19:45:39137 "type": "windowed_test_launcher",
138 },
dprankea55584f12015-07-22 00:52:47139 "app_shell_unittests": {
140 "label": "//extensions/shell:app_shell_unittests",
dprankea21b31b02015-07-24 21:42:00141 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47142 },
skycf094f672016-09-01 19:40:12143 "ash_content_unittests": {
144 "label": "//ash:ash_content_unittests",
145 "type": "windowed_test_launcher",
146 },
dprankea55584f12015-07-22 00:52:47147 "ash_unittests": {
148 "label": "//ash:ash_unittests",
mswda0133e62016-02-16 20:50:02149 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47150 },
kbr39bc5e6d2015-12-31 00:01:43151 "audio_unittests": {
152 "label": "//media:audio_unittests",
153 "type": "raw",
154 "args": [],
155 },
dprankecb4a2e242016-09-19 01:13:14156 "aura_builder": {
157 "label": "//:aura_builder",
158 "type": "additional_compile_target",
159 },
dprankea55584f12015-07-22 00:52:47160 "aura_unittests": {
161 "label": "//ui/aura:aura_unittests",
dprankea21b31b02015-07-24 21:42:00162 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47163 },
bsheedy84541d552017-04-13 01:24:37164 "motopho_latency_test": {
165 "label": "//chrome/test/vr/perf/latency/:motopho_latency_test",
166 "type": "script",
167 "script": "//chrome/test/vr/perf/latency/run_latency_test.py",
168 "args": [
169 "--output-dir=${ISOLATED_OUTDIR}",
170 "-v",
171 ],
172 },
dprankecb4a2e242016-09-19 01:13:14173 "base_junit_tests": {
174 "label": "//base:base_junit_tests",
175 "type": "junit_test",
176 },
dprankea55584f12015-07-22 00:52:47177 "base_unittests": {
178 "label": "//base:base_unittests",
179 "type": "console_test_launcher",
180 },
charliea5daef2bb2016-01-29 00:13:25181 "battor_agent_unittests": {
182 "label": "//tools/battor_agent:battor_agent_unittests",
183 "type": "console_test_launcher",
184 },
dprankea55584f12015-07-22 00:52:47185 "blink_heap_unittests": {
brettw4a6700a2016-09-01 01:24:01186 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
Dirk Pranke49802732015-12-10 01:36:41187 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47188 },
189 "blink_platform_unittests": {
Dirk Pranke49802732015-12-10 01:36:41190 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests",
191 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47192 },
dprankecb4a2e242016-09-19 01:13:14193 "blink_tests": {
194 "label": "//:blink_tests",
195 "type": "additional_compile_target",
196 },
bpastened9c91b62015-11-17 22:57:42197 "breakpad_unittests": {
198 "label": "//breakpad:breakpad_unittests",
199 "type": "console_test_launcher",
200 },
dprankea55584f12015-07-22 00:52:47201 "browser_tests": {
202 "label": "//chrome/test:browser_tests",
jam66f8afe22015-08-09 04:41:40203 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47204 },
205 "cacheinvalidation_unittests": {
206 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
207 "type": "raw",
208 "args": [
209 "--test-launcher-bot-mode",
210 ],
211 },
mcasasd2f53ea2016-06-24 19:24:27212 "capture_unittests": {
213 "label": "//media/capture:capture_unittests",
214 "type": "windowed_test_launcher",
215 },
kmackay421e3482016-05-16 18:05:01216 "cast_alsa_cma_backend_unittests": {
217 "label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests",
maruel44522882016-08-04 17:59:11218 "type": "console_test_launcher",
kmackay421e3482016-05-16 18:05:01219 },
dprankea55584f12015-07-22 00:52:47220 "cast_base_unittests": {
dprankecb4a2e242016-09-19 01:13:14221 "label": "//chromecast/base:cast_base_unittests",
maruel44522882016-08-04 17:59:11222 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47223 },
224 "cast_crash_unittests": {
225 "label": "//chromecast/crash:cast_crash_unittests",
maruel44522882016-08-04 17:59:11226 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47227 },
dprankecb4a2e242016-09-19 01:13:14228 "cast_media_unittests": {
229 "label": "//chromecast/media:cast_media_unittests",
230 "type": "console_test_launcher",
231 },
232 "cast_shell": {
233 "label": "//chromecast:cast_shell",
234 "type": "additional_compile_target",
235 },
236 "cast_shell_apk": {
237 "label": "//chromecast:cast_shell_apk",
238 "type": "additional_compile_target",
239 },
alokpe3bd5ed2016-11-16 15:57:10240 "cast_shell_browsertests": {
241 "label": "//chromecast:cast_shell_browsertests",
dprankecb4a2e242016-09-19 01:13:14242 "type": "console_test_launcher",
243 },
alokpe3bd5ed2016-11-16 15:57:10244 "cast_shell_unittests": {
245 "label": "//chromecast:cast_shell_unittests",
dpranke9f25f762016-11-15 23:40:36246 "type": "console_test_launcher",
247 },
dprankea55584f12015-07-22 00:52:47248 "cast_unittests": {
dprankea21b31b02015-07-24 21:42:00249 "label": "//media/cast:cast_unittests",
250 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47251 },
252 "cc_unittests": {
253 "label": "//cc:cc_unittests",
dpranke177c1e22015-07-22 23:07:43254 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47255 },
dprankecb4a2e242016-09-19 01:13:14256 "chrome": {
257 "label": "//chrome:chrome",
258 "type": "additional_compile_target",
259 },
grteec2afd2016-02-09 16:56:45260 "chrome_app_unittests": {
261 "label": "//chrome/test:chrome_app_unittests",
262 "type": "console_test_launcher",
263 },
dprankea55584f12015-07-22 00:52:47264 "chrome_elf_unittests": {
265 "label": "//chrome_elf:chrome_elf_unittests",
thakise782a76f2016-02-16 15:47:35266 "type": "raw",
dprankea55584f12015-07-22 00:52:47267 },
dprankecb4a2e242016-09-19 01:13:14268 "chrome_junit_tests": {
269 "label": "//chrome/android:chrome_junit_tests",
270 "type": "junit_test",
271 },
272 "chrome_official_builder": {
273 "label": "//:chrome_official_builder",
274 "type": "additional_compile_target",
275 },
276 "chrome_official_builder_no_unittests": {
277 "label": "//:chrome_official_builder_no_unittests",
278 "type": "additional_compile_target",
279 },
280 "chrome_public_apk": {
281 "label": "//chrome/android:chrome_public_apk",
282 "type": "additional_compile_target",
283 },
jbudoricke3c4f95e2016-04-28 23:17:38284 "chrome_public_test_apk": {
agrieve2e039c22016-04-27 22:57:53285 "label": "//chrome/android:chrome_public_test_apk",
286 "type": "console_test_launcher",
287 },
bsheedy8d420112017-02-23 21:10:45288 "chrome_public_test_vr_apk": {
289 "label": "//chrome/android:chrome_public_test_vr_apk",
290 "type": "console_test_launcher",
291 },
jbudoricke3c4f95e2016-04-28 23:17:38292 "chrome_sync_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53293 "label": "//chrome/android:chrome_sync_shell_test_apk",
294 "type": "console_test_launcher",
295 },
dprankea55584f12015-07-22 00:52:47296 "chromedriver_unittests": {
297 "label": "//chrome/test/chromedriver:chromedriver_unittests",
dpranke1643d222015-07-27 22:22:08298 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47299 },
300 "chromeos_unittests": {
301 "label": "//chromeos:chromeos_unittests",
brettw6df3e8c42016-04-14 21:07:13302 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47303 },
maruel44522882016-08-04 17:59:11304 "chromevox_tests": {
305 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests",
306 "type": "windowed_test_launcher",
307 },
dprankecb4a2e242016-09-19 01:13:14308 "chromium_builder_asan": {
309 "label": "//:chromium_builder_asan",
310 "type": "additional_compile_target",
311 },
dprankecb4a2e242016-09-19 01:13:14312 "chromium_builder_perf": {
313 "label": "//:chromium_builder_perf",
314 "type": "additional_compile_target",
315 },
316 "chromium_builder_tests": {
317 "label": "//:chromium_builder_tests",
318 "type": "additional_compile_target",
319 },
320 "chromium_swarm_tests": {
321 "label": "//:chromium_swarm_tests",
322 "type": "additional_compile_target",
323 },
324 "chromiumos_preflight": {
325 "label": "//:chromiumos_preflight",
326 "type": "additional_compile_target",
327 },
dprankea55584f12015-07-22 00:52:47328 "components_browsertests": {
329 "label": "//components:components_browsertests",
dpranke1643d222015-07-27 22:22:08330 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47331 },
peter943bc63a2017-02-28 01:40:22332 "components_gcm_driver_junit_tests": {
333 "label": "//components/gcm_driver/android:components_gcm_driver_junit_tests",
334 "type": "junit_test",
335 },
dprankecb4a2e242016-09-19 01:13:14336 "components_invalidation_impl_junit_tests": {
337 "label": "//components/invalidation/impl:components_invalidation_impl_junit_tests",
338 "type": "junit_test",
339 },
340 "components_policy_junit_tests": {
341 "label": "//components/policy/android:components_policy_junit_tests",
342 "type": "junit_test",
343 },
dprankea55584f12015-07-22 00:52:47344 "components_unittests": {
345 "label": "//components:components_unittests",
dpranke1643d222015-07-27 22:22:08346 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47347 },
aberent1b0987f2017-01-25 09:25:49348 "components_variations_junit_tests": {
349 "label": "//components/variations/android:components_variations_junit_tests",
350 "type": "junit_test",
351 },
dprankecb4a2e242016-09-19 01:13:14352 "components_web_restrictions_junit_tests": {
353 "label": "//components/web_restrictions:components_web_restrictions_junit_tests",
354 "type": "junit_test",
355 },
dprankea55584f12015-07-22 00:52:47356 "compositor_unittests": {
357 "label": "//ui/compositor:compositor_unittests",
dpranke177c1e22015-07-22 23:07:43358 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47359 },
360 "content_browsertests": {
361 "label": "//content/test:content_browsertests",
dpranke1643d222015-07-27 22:22:08362 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47363 },
dprankecb4a2e242016-09-19 01:13:14364 "content_junit_tests": {
365 "label": "//content/public/android:content_junit_tests",
366 "type": "junit_test",
367 },
jochen0426747e2017-02-09 17:01:19368 "content_shell_crash_test": {
369 "label": "//content/shell:content_shell_crash_test",
370 "type": "script",
371 "script": "//testing/scripts/content_shell_crash_test.py",
372 },
jbudoricke3c4f95e2016-04-28 23:17:38373 "content_shell_test_apk": {
agrieve2e039c22016-04-27 22:57:53374 "label": "//content/shell/android:content_shell_test_apk",
375 "type": "console_test_launcher",
376 },
dprankea55584f12015-07-22 00:52:47377 "content_unittests": {
378 "label": "//content/test:content_unittests",
dpranke1643d222015-07-27 22:22:08379 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47380 },
381 "courgette_unittests": {
382 "label": "//courgette:courgette_unittests",
thakis6e0c3f82016-02-11 04:33:59383 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47384 },
dprankecb4a2e242016-09-19 01:13:14385 "cronet_package": {
386 "label": "//components/cronet/android:cronet_package",
387 "type": "additional_compile_target",
388 },
gcasto1821cea42016-10-05 17:50:45389 "cronet_test": {
gcasto25c8da8e2016-10-26 23:42:40390 "label": "//components/cronet/ios/test:cronet_test",
gcasto1821cea42016-10-05 17:50:45391 "type": "raw",
392 },
dprankecb4a2e242016-09-19 01:13:14393 "cronet_test_instrumentation_apk": {
394 "label": "//components/cronet/android:cronet_test_instrumentation_apk",
395 "type": "additional_compile_target",
396 },
dprankea55584f12015-07-22 00:52:47397 "crypto_unittests": {
398 "label": "//crypto:crypto_unittests",
dpranke1643d222015-07-27 22:22:08399 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47400 },
401 "dbus_unittests": {
402 "label": "//dbus:dbus_unittests",
maruel44522882016-08-04 17:59:11403 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47404 },
405 "device_unittests": {
406 "label": "//device:device_unittests",
dpranke1643d222015-07-27 22:22:08407 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47408 },
chenwilliam2ee4d24c92016-11-21 20:41:44409 "devtools_closure_compile": {
410 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile",
411 "type": "script",
chenwilliam56a90382016-12-09 02:16:28412 "script": "//testing/scripts/run_devtools_check.py",
chenwilliam2ee4d24c92016-11-21 20:41:44413 "args": [
414 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py",
415 ],
416 },
chenwilliam56a90382016-12-09 02:16:28417 "devtools_eslint": {
418 "label": "//third_party/WebKit/Source/devtools:devtools_eslint",
419 "type": "script",
420 "script": "//testing/scripts/run_devtools_check.py",
421 "args": [
422 "../../third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py",
423 ],
424 },
dprankea55584f12015-07-22 00:52:47425 "display_unittests": {
426 "label": "//ui/display:display_unittests",
dpranke1643d222015-07-27 22:22:08427 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47428 },
kylechar80f206e2016-09-06 17:50:26429 "display_service_unittests": {
430 "label": "//services/ui/display:display_service_unittests",
431 "type": "console_test_launcher",
432 },
mikecaseba2be202017-03-10 18:14:24433 "dump_syms" : {
434 "label": "//breakpad:dump_syms",
435 "type": "additional_compile_target",
436 },
dprankea55584f12015-07-22 00:52:47437 "events_unittests": {
438 "label": "//ui/events:events_unittests",
dprankef497c7962015-07-31 19:46:23439 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47440 },
oshima2a44e112016-06-23 17:59:18441 "exo_unittests": {
442 "label": "//components/exo:exo_unittests",
443 "type": "windowed_test_launcher",
444 },
dprankea55584f12015-07-22 00:52:47445 "extensions_browsertests": {
446 "label": "//extensions:extensions_browsertests",
dprankef497c7962015-07-31 19:46:23447 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47448 },
449 "extensions_unittests": {
450 "label": "//extensions:extensions_unittests",
dprankef497c7962015-07-31 19:46:23451 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47452 },
erg716b6172016-03-18 18:30:29453 "filesystem_service_unittests": {
erg4652931e2016-04-27 22:15:40454 "label": "//components/filesystem:filesystem_service_unittests",
erg716b6172016-03-18 18:30:29455 "type": "console_test_launcher",
456 },
dprankea55584f12015-07-22 00:52:47457 "gcm_unit_tests": {
458 "label": "//google_apis/gcm:gcm_unit_tests",
dprankef497c7962015-07-31 19:46:23459 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47460 },
461 "gfx_unittests": {
462 "label": "//ui/gfx:gfx_unittests",
dprankef497c7962015-07-31 19:46:23463 "type": "raw",
464 "args": [],
dprankea55584f12015-07-22 00:52:47465 },
jochen656a7c92015-12-08 00:56:45466 "gin_unittests": {
467 "label": "//gin:gin_unittests",
468 "type": "console_test_launcher",
469 },
dprankedbdd9d82015-08-12 21:18:18470 "gles2_conform_test": {
471 "label": "//gpu/gles2_conform_support:gles2_conform_test",
472 "type": "console_test_launcher",
473 },
474 "gl_tests": {
475 "label": "//gpu:gl_tests",
476 "type": "raw",
477 "args": [],
478 },
dprankea55584f12015-07-22 00:52:47479 "gl_unittests": {
480 "label": "//ui/gl:gl_unittests",
vmpstrfaa78922016-12-21 02:12:21481 "type": "raw",
kylechared642742016-12-19 21:10:33482 "args": [],
kylechar50abf5a2016-11-29 16:03:07483 },
kylechar39705682017-01-19 14:37:23484 "gl_unittests_ozone": {
485 "label": "//ui/gl:gl_unittests_ozone",
vmpstrfaa78922016-12-21 02:12:21486 "label_type": "group",
487 "type": "windowed_test_launcher",
488 "executable": "gl_unittests",
vmpstrfaa78922016-12-21 02:12:21489 },
dprankea55584f12015-07-22 00:52:47490 "gn_unittests": {
491 "label": "//tools/gn:gn_unittests",
dpranke177c1e22015-07-22 23:07:43492 "type": "raw",
493 "args": [],
dprankea55584f12015-07-22 00:52:47494 },
495 "google_apis_unittests": {
496 "label": "//google_apis:google_apis_unittests",
dpranke358c73c2015-08-25 20:43:30497 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47498 },
markdittmer2ce53ac2016-05-05 16:21:02499 "gpu_ipc_service_unittests": {
500 "label": "//gpu/ipc/service:gpu_ipc_service_unittests",
501 "type": "windowed_test_launcher",
502 },
dprankea55584f12015-07-22 00:52:47503 "gpu_unittests": {
504 "label": "//gpu:gpu_unittests",
dprankef497c7962015-07-31 19:46:23505 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47506 },
dprankecb4a2e242016-09-19 01:13:14507 "headless_lib": {
508 "label": "//headless:headless_lib",
509 "type": "additional_compile_target",
510 },
perezjub8b863a02016-04-15 09:20:00511 "headless_browsertests": {
512 "label": "//headless:headless_browsertests",
513 "type": "console_test_launcher",
514 },
dprankecb4a2e242016-09-19 01:13:14515 "headless_shell": {
516 "label": "//headless:headless_shell",
517 "type": "additional_compile_target",
518 },
519 "headless_tests": {
520 "label": "//headless:headless_tests",
521 "type": "additional_compile_target",
522 },
perezjub8b863a02016-04-15 09:20:00523 "headless_unittests": {
524 "label": "//headless:headless_unittests",
525 "type": "console_test_launcher",
526 },
kylechar592104a2016-08-04 15:10:10527 "input_device_unittests": {
528 "label": "//services/ui/input_devices:input_device_unittests",
529 "type": "console_test_launcher",
530 },
dprankea55584f12015-07-22 00:52:47531 "installer_util_unittests": {
532 "label": "//chrome/installer/util:installer_util_unittests",
thakis33fc54c2016-02-13 01:51:16533 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47534 },
anantaf2e54a92016-05-28 00:39:16535 "install_static_unittests": {
536 "label": "//chrome/install_static:install_static_unittests",
537 "type": "console_test_launcher",
538 },
dprankea55584f12015-07-22 00:52:47539 "interactive_ui_tests": {
540 "label": "//chrome/test:interactive_ui_tests",
dprankef497c7962015-07-31 19:46:23541 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47542 },
smutb99217a2017-03-02 23:45:24543 "ios_chrome_integration_egtests": {
544 "label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
545 "type": "raw",
546 "args": [],
547 },
baxley491ee982017-03-31 15:17:49548 "ios_chrome_reading_list_egtests": {
549 "label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
550 "type": "raw",
551 "args": [],
552 },
smutb99217a2017-03-02 23:45:24553 "ios_chrome_settings_egtests": {
554 "label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
555 "type": "raw",
556 "args": [],
557 },
558 "ios_chrome_smoke_egtests": {
559 "label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
560 "type": "raw",
561 "args": [],
562 },
563 "ios_chrome_ui_egtests": {
564 "label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
565 "type": "raw",
566 "args": [],
567 },
dprankecb4a2e242016-09-19 01:13:14568 "ios_chrome_unittests": {
sdefresnee51457b2016-12-15 09:11:44569 "label": "//ios/chrome/test:ios_chrome_unittests",
dprankecb4a2e242016-09-19 01:13:14570 "type": "raw",
571 "args": [],
572 },
smutb99217a2017-03-02 23:45:24573 "ios_chrome_web_egtests": {
574 "label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
575 "type": "raw",
576 "args": [],
577 },
dprankecb4a2e242016-09-19 01:13:14578 "ios_net_unittests": {
579 "label": "//ios/net:ios_net_unittests",
580 "type": "raw",
581 "args": [],
582 },
smutb99217a2017-03-02 23:45:24583 "ios_showcase_egtests": {
584 "label": "//ios/showcase:ios_showcase_egtests",
585 "type": "raw",
586 "args": [],
587 },
dprankecb4a2e242016-09-19 01:13:14588 "ios_web_inttests": {
589 "label": "//ios/web:ios_web_inttests",
590 "type": "raw",
591 "args": [],
592 },
smutb99217a2017-03-02 23:45:24593 "ios_web_shell_egtests": {
594 "label": "//ios/web/shell/test:ios_web_shell_egtests",
595 "type": "raw",
596 "args": [],
597 },
dprankecb4a2e242016-09-19 01:13:14598 "ios_web_unittests": {
599 "label": "//ios/web:ios_web_unittests",
600 "type": "raw",
601 "args": [],
602 },
dprankea55584f12015-07-22 00:52:47603 "ipc_tests": {
604 "label": "//ipc:ipc_tests",
dpranke177c1e22015-07-22 23:07:43605 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47606 },
607 "jingle_unittests": {
608 "label": "//jingle:jingle_unittests",
dprankef497c7962015-07-31 19:46:23609 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47610 },
dprankecb4a2e242016-09-19 01:13:14611 "junit_unit_tests": {
612 "label": "//testing/android/junit:junit_unit_tests",
613 "type": "junit_test",
614 },
dprankea55584f12015-07-22 00:52:47615 "keyboard_unittests": {
616 "label": "//ui/keyboard:keyboard_unittests",
maruel44522882016-08-04 17:59:11617 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47618 },
ergf1f689f2016-03-22 00:51:20619 "leveldb_service_unittests": {
620 "label": "//components/leveldb:leveldb_service_unittests",
621 "type": "console_test_launcher",
622 },
dpranke5e233662016-02-13 01:14:07623 # See http://crbug.com/585151
dprankecb4a2e242016-09-19 01:13:14624 "libaddressinput_unittests": {
625 "label": "//third_party/libaddressinput:libaddressinput_unittests",
626 "type": "console_test_launcher",
627 },
phoglund2357e822016-03-21 15:58:05628 # See http://crbug.com/585151
dprankecb4a2e242016-09-19 01:13:14629 "libphonenumber_unittests": {
630 "label": "//third_party/libphonenumber:libphonenumber_unittests",
631 "type": "console_test_launcher",
632 },
zengster7ec9ff52016-08-10 00:18:41633 "mac_installer_unittests": {
634 "label": "//chrome/installer/mac/app:mac_installer_unittests",
635 "type": "console_test_launcher",
636 },
dprankecb4a2e242016-09-19 01:13:14637 "mash:all" : {
638 "label": "//mash:all",
639 "type": "additional_compile_target",
640 },
kylechar309364b2017-02-10 18:51:30641 "mash_browser_tests": {
642 "label": "//chrome/test:mash_browser_tests",
643 "label_type": "group",
644 "type": "windowed_test_launcher",
645 "executable": "browser_tests",
646 "args": [
647 "--run-in-mash",
648 "--service-overrides=../../chrome/app/mash/mash_service_overrides.json",
649 ],
650 },
dprankea55584f12015-07-22 00:52:47651 "media_unittests": {
652 "label": "//media:media_unittests",
dprankef497c7962015-07-31 19:46:23653 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47654 },
xhwang9c958fd2016-12-05 23:17:16655 "media_service_unittests": {
656 "label": "//media/mojo/services:media_service_unittests",
bena5d1cd42016-04-29 22:59:53657 "type": "console_test_launcher",
658 },
hubbe2dc5a592015-09-23 23:29:31659 "media_blink_unittests": {
660 "label": "//media/blink:media_blink_unittests",
661 "type": "windowed_test_launcher",
662 },
cliffordcheng24894e8a2016-12-05 22:31:11663 "media_router_perf_tests": {
664 "label": "//chrome/test/media_router:media_router_perf_tests",
665 "type": "script",
cliffordcheng28deea192017-01-14 04:21:50666 "script": "//chrome/test/media_router/telemetry/run_benchmark.py",
cliffordcheng24894e8a2016-12-05 22:31:11667 "args": [
668 "--browser=release",
669 "--also-run-disabled-tests",
670 "-v",
671 "--use-live-sites",
672 "--output-format=chartjson",
673 "--output-dir=${ISOLATED_OUTDIR}",
674 ],
675 },
cliffordchengf7655ed2016-11-29 03:07:55676 "media_router_tests": {
677 "label": "//chrome/test/media_router:media_router_tests",
678 "type": "script",
679 "script": "//chrome/test/media_router/internal/media_router_tests.py",
680 "args": [
681 "--extension",
682 "mr_extension/",
683 "--test_binary",
684 "./browser_tests",
685 ],
686 },
martinissee599af2017-02-06 23:19:43687 "microdump_stackwalk" : {
688 "label": "//breakpad:microdump_stackwalk",
689 "type": "additional_compile_target",
690 },
dprankea55584f12015-07-22 00:52:47691 "midi_unittests": {
dpranke358c73c2015-08-25 20:43:30692 "label": "//media/midi:midi_unittests",
693 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47694 },
dprankecb4a2e242016-09-19 01:13:14695 "mini_installer": {
696 "label": "//chrome/installer/mini_installer:mini_installer",
697 "type": "additional_compile_target",
698 },
dprankea55584f12015-07-22 00:52:47699 "mojo_common_unittests": {
700 "label": "//mojo/common:mojo_common_unittests",
dprankef497c7962015-07-31 19:46:23701 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47702 },
yzshen1d7a11c2016-01-27 00:16:32703 "mojo_js_integration_tests": {
alokp210e57b22017-01-20 20:36:26704 "label": "//mojo/edk/js/tests:mojo_js_integration_tests",
yzshen1d7a11c2016-01-27 00:16:32705 "type": "console_test_launcher",
706 },
707 "mojo_js_unittests": {
alokp210e57b22017-01-20 20:36:26708 "label": "//mojo/edk/js/tests:mojo_js_unittests",
yzshen1d7a11c2016-01-27 00:16:32709 "type": "console_test_launcher",
710 },
dprankea55584f12015-07-22 00:52:47711 "mojo_public_application_unittests": {
rockot734fb662016-10-15 16:41:30712 "label": "//services/service_manager/public/cpp/tests:mojo_public_application_unittests",
sammc98ecd4a2016-04-29 01:59:21713 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47714 },
715 "mojo_public_bindings_unittests": {
rockotc637caf9b2016-02-10 09:57:08716 "label": "//mojo/edk/test:mojo_public_bindings_unittests",
dprankef497c7962015-07-31 19:46:23717 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47718 },
dprankea55584f12015-07-22 00:52:47719 "mojo_public_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08720 "label": "//mojo/edk/test:mojo_public_system_unittests",
dpranke90882b42015-09-03 21:53:35721 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47722 },
dprankea55584f12015-07-22 00:52:47723 "mojo_system_unittests": {
rockotc637caf9b2016-02-10 09:57:08724 "label": "//mojo/edk/system:mojo_system_unittests",
sammc98ecd4a2016-04-29 01:59:21725 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47726 },
sammc9b709032016-08-12 00:35:24727 "mojo_test_apk": {
728 "label": "//mojo/android:mojo_test_apk",
729 "type": "console_test_launcher",
730 },
erg703e3fa72016-05-20 00:37:59731 "mus_clipboard_unittests": {
ben6b0453d12016-07-02 04:27:19732 "label": "//services/ui/clipboard:mus_clipboard_unittests",
erg703e3fa72016-05-20 00:37:59733 "type": "windowed_test_launcher",
734 },
sky7366c2b2016-05-13 23:34:09735 "mus_public_unittests": {
ben6b0453d12016-07-02 04:27:19736 "label": "//services/ui/public/cpp/tests:mus_public_unittests",
sammc98ecd4a2016-04-29 01:59:21737 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47738 },
739 "message_center_unittests": {
740 "label": "//ui/message_center:message_center_unittests",
dpranke94c6fb22016-06-10 01:55:08741 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47742 },
sky130827232015-11-23 20:41:08743 "mash_unittests": {
744 "label": "//mash:mash_unittests",
sky57052d022016-04-29 17:18:23745 "type": "windowed_test_launcher",
sky97b65592015-11-02 20:08:25746 },
penghuangb5487ec2016-04-29 01:16:29747 "mus_gpu_unittests": {
ben6b0453d12016-07-02 04:27:19748 "label": "//services/ui/gpu:mus_gpu_unittests",
penghuangb5487ec2016-04-29 01:16:29749 "type": "console_test_launcher",
750 },
kylechar22c22eb2016-09-16 18:34:29751 "mus_demo_unittests": {
752 "label": "//services/ui/demo:mus_demo_unittests",
753 "type": "windowed_test_launcher",
754 },
rockot6a2b0422016-03-09 17:14:59755 "mus_ws_unittests": {
ben6b0453d12016-07-02 04:27:19756 "label": "//services/ui/ws:mus_ws_unittests",
rockot6a2b0422016-03-09 17:14:59757 "type": "windowed_test_launcher",
758 },
maruel44522882016-08-04 17:59:11759 "nacl_helper_nonsfi_unittests": {
760 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
761 "type": "raw",
762 "args": [],
763 },
dprankea55584f12015-07-22 00:52:47764 "nacl_loader_unittests": {
brettwf4b4a4282015-12-16 00:41:13765 "label": "//components/nacl/loader:nacl_loader_unittests",
dprankef497c7962015-07-31 19:46:23766 "type": "raw",
767 "args": [],
dprankea55584f12015-07-22 00:52:47768 },
benee648f62016-05-12 23:04:50769 "navigation_unittests": {
770 "label": "//services/navigation:navigation_unittests",
771 "type": "windowed_test_launcher",
772 },
dprankecb4a2e242016-09-19 01:13:14773 "net_junit_tests": {
774 "label": "//net/android:net_junit_tests",
775 "type": "junit_test",
776 },
dprankea55584f12015-07-22 00:52:47777 "net_unittests": {
778 "label": "//net:net_unittests",
dprankef497c7962015-07-31 19:46:23779 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47780 },
dprankecb4a2e242016-09-19 01:13:14781 "next_version_mini_installer": {
782 "label": "//chrome/installer/mini_installer:next_version_mini_installer",
783 "type": "additional_compile_target",
784 },
dprankea55584f12015-07-22 00:52:47785 "ozone_unittests": {
786 "label": "//ui/ozone:ozone_unittests",
maruel44522882016-08-04 17:59:11787 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47788 },
kylechar4fab9212016-08-24 21:09:10789 "ozone_gl_unittests": {
790 "label": "//ui/ozone/gl:ozone_gl_unittests",
791 "type": "console_test_launcher",
792 },
art-snakea84bce92016-10-27 19:16:49793 "pdf_unittests": {
794 "label": "//pdf:pdf_unittests",
795 "type": "console_test_launcher",
796 },
machenbach5da31892016-09-19 15:06:42797 "pdfium_test": {
798 "label": "//third_party/pdfium/samples:pdfium_test",
799 "type": "additional_compile_target",
800 },
machenbach5da31892016-09-19 15:06:42801 "postmortem-metadata": {
802 "label": "//v8:postmortem-metadata",
803 "type": "additional_compile_target",
804 },
dprankea55584f12015-07-22 00:52:47805 "ppapi_unittests": {
806 "label": "//ppapi:ppapi_unittests",
thakis7cde2232016-02-19 02:41:48807 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47808 },
809 "printing_unittests": {
810 "label": "//printing:printing_unittests",
dprankef497c7962015-07-31 19:46:23811 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47812 },
813 "remoting_unittests": {
814 "label": "//remoting:remoting_unittests",
dprankef497c7962015-07-31 19:46:23815 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47816 },
dprankea55584f12015-07-22 00:52:47817 "sandbox_linux_unittests": {
818 "label": "//sandbox/linux:sandbox_linux_unittests",
dpranke177c1e22015-07-22 23:07:43819 "type": "raw",
820 "args": [],
dprankea55584f12015-07-22 00:52:47821 },
822 "sandbox_mac_unittests": {
823 "label": "//sandbox/mac:sandbox_mac_unittests",
rsesek172b7352016-05-10 22:27:26824 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47825 },
826 "sbox_integration_tests": {
827 "label": "//sandbox/win:sbox_integration_tests",
thakis33fc54c2016-02-13 01:51:16828 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47829 },
830 "sbox_unittests": {
831 "label": "//sandbox/win:sbox_unittests",
thakis33fc54c2016-02-13 01:51:16832 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47833 },
834 "sbox_validation_tests": {
835 "label": "//sandbox/win:sbox_validation_tests",
thakis33fc54c2016-02-13 01:51:16836 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47837 },
bendb45a532016-10-15 01:22:09838 "service_manager_unittests": {
rockot734fb662016-10-15 16:41:30839 "label": "//services/service_manager/tests:service_manager_unittests",
bendb45a532016-10-15 01:22:09840 "type": "console_test_launcher",
841 },
rockot8cdd37a2017-01-28 02:53:31842 "service_unittests": {
843 "label": "//services:service_unittests",
844 "type": "console_test_launcher",
845 },
dprankea55584f12015-07-22 00:52:47846 "setup_unittests": {
847 "label": "//chrome/installer/setup:setup_unittests",
Nico Webere6948262016-02-10 03:02:59848 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47849 },
850 "skia_unittests": {
851 "label": "//skia:skia_unittests",
dpranke177c1e22015-07-22 23:07:43852 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47853 },
eseckler7233c1a72017-01-25 15:07:54854 "snapshot_unittests": {
855 "label": "//ui/snapshot:snapshot_unittests",
856 "type": "windowed_test_launcher",
857 },
dprankea55584f12015-07-22 00:52:47858 "sql_unittests": {
859 "label": "//sql:sql_unittests",
dpranke177c1e22015-07-22 23:07:43860 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:47861 },
pwnall008c0272016-10-14 16:54:04862 "storage_unittests": {
863 "label": "//storage/browser:storage_unittests",
864 "type": "console_test_launcher",
865 },
sugoic9c93b52017-01-12 16:11:02866 "swiftshader_unittests": {
867 "label": "//third_party/swiftshader/tests/unittests:swiftshader_unittests",
868 "type": "raw",
869 "args": [],
870 },
dprankea55584f12015-07-22 00:52:47871 "sync_integration_tests": {
dprankef497c7962015-07-31 19:46:23872 "label": "//chrome/test:sync_integration_tests",
873 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:47874 },
dprankecb4a2e242016-09-19 01:13:14875 "system_webview_apk": {
876 "label": "//android_webview:system_webview_apk",
877 "type": "additional_compile_target",
878 },
dprankedbdd9d82015-08-12 21:18:18879 "tab_capture_end2end_tests": {
880 "label": "//chrome/test:browser_tests",
881 "type": "gpu_browser_test",
882 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApiPixelTest.EndToEnd*",
883 },
kbr48321ca02016-06-23 03:24:08884 "telemetry_gpu_integration_test": {
885 "label": "//chrome/test:telemetry_gpu_integration_test",
886 "type": "script",
887 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
888 "args": [
889 "../../content/test/gpu/run_gpu_integration_test.py",
890 ],
891 },
nednguyenfbee71a62015-10-01 12:41:13892 "telemetry_gpu_unittests": {
893 "label": "//chrome/test:telemetry_gpu_unittests",
894 "type": "script",
895 "script": "//testing/scripts/run_telemetry_as_googletest.py",
896 "args": [
897 "../../content/test/gpu/run_unittests.py",
898 "-v",
899 ],
900 },
nednguyen9ce21622015-10-08 12:30:48901 "telemetry_perf_unittests": {
902 "label": "//chrome/test:telemetry_perf_unittests",
903 "type": "script",
904 "script": "//testing/scripts/run_telemetry_as_googletest.py",
905 "args": [
nednguyen9ce21622015-10-08 12:30:48906 "../../tools/perf/run_tests",
907 "-v",
908 ],
909 },
eyaichd158d952016-09-02 13:23:41910 "telemetry_perf_tests": {
911 "label": "//chrome/test:telemetry_perf_tests",
912 "type": "script",
913 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
914 "args": [
915 "../../tools/perf/run_benchmark",
916 ],
917 },
nednguyen8365ba52015-11-18 15:52:46918 "telemetry_unittests": {
919 "label": "//chrome/test:telemetry_unittests",
920 "type": "script",
921 "script": "//testing/scripts/run_telemetry_as_googletest.py",
922 "args": [
923 "--xvfb",
nednguyena91919182016-01-13 18:31:53924 "../../tools/perf/run_telemetry_tests",
nednguyen8365ba52015-11-18 15:52:46925 "-v",
nednguyene882052d2016-12-13 12:36:41926 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
927 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
928 "--jobs=1",
nednguyen8365ba52015-11-18 15:52:46929 "--chrome-root",
930 "../../",
931 ],
932 },
eyaich7c79b912016-10-29 00:39:25933 "cc_perftests": {
934 "label": "//cc:cc_perftests",
935 "type": "script",
936 "script": "//testing/scripts/run_gtest_perf_test.py",
937 "args": [
938 "cc_perftests",
939 ],
940 },
crouleau98e395312017-01-12 01:29:48941 "media_perftests": {
942 "label": "//media:media_perftests",
943 "type": "script",
944 "script": "//testing/scripts/run_gtest_perf_test.py",
945 "args": [
946 "media_perftests",
947 ],
948 },
eyaichd3e023c12016-11-14 22:41:01949 "load_library_perf_tests": {
950 "label": "//chrome/test:load_library_perf_tests",
951 "type": "script",
952 "script": "//testing/scripts/run_gtest_perf_test.py",
953 "args": [
954 "load_library_perf_tests",
955 "--test-launcher-print-test-stdio=always"
956 ],
957 },
958 "tracing_perftests": {
959 "label": "//components/tracing:tracing_perftests",
960 "type": "script",
961 "script": "//testing/scripts/run_gtest_perf_test.py",
962 "args": [
963 "tracing_perftests",
964 "--test-launcher-print-test-stdio=always"
965 ],
966 },
967 "gpu_perftests": {
968 "label": "//gpu:gpu_perftests",
969 "type": "script",
970 "script": "//testing/scripts/run_gtest_perf_test.py",
971 "args": [
972 "gpu_perftests",
973 "--adb-path",
974 "src/third_party/catapult/devil/bin/deps/linux2/x86_64/bin/adb"
975 ],
976 },
977 "angle_perftests": {
eyaich87225102016-11-15 15:15:17978 "label": "//chrome/test:angle_perftests",
eyaichd3e023c12016-11-14 22:41:01979 "type": "script",
980 "script": "//testing/scripts/run_gtest_perf_test.py",
981 "args": [
982 "angle_perftests",
983 "--test-launcher-print-test-stdio=always",
984 "--test-launcher-jobs=1"
985 ],
986 },
987 "performance_browser_tests": {
eyaich87225102016-11-15 15:15:17988 "label": "//chrome/test:performance_browser_tests",
eyaichd3e023c12016-11-14 22:41:01989 "type": "script",
990 "script": "//testing/scripts/run_gtest_perf_test.py",
991 "args": [
992 "performance_browser_tests",
993 "--test-launcher-print-test-stdio=always",
994 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
995 "--test-launcher-jobs=1",
996 "--enable-gpu"
997 ],
998 },
moshayedi31ca0f72016-08-09 20:51:12999 "mus_ime_unittests": {
1000 "label": "//services/ui/ime:mus_ime_unittests",
moshayedic3677492016-07-28 17:20:301001 "type": "windowed_test_launcher",
1002 },
tapted5f112f292016-12-11 23:59:401003 "native_theme_unittests": {
1004 "label": "//ui/native_theme:native_theme_unittests",
1005 "type": "windowed_test_launcher",
1006 },
pkotwicz280f66602015-11-04 02:51:551007 "ui_android_unittests": {
1008 "label": "//ui/android:ui_android_unittests",
1009 "type": "console_test_launcher",
1010 },
dprankea55584f12015-07-22 00:52:471011 "ui_base_unittests": {
1012 "label": "//ui/base:ui_base_unittests",
1013 "type": "windowed_test_launcher",
1014 },
1015 "ui_chromeos_unittests": {
1016 "label": "//ui/chromeos:ui_chromeos_unittests",
maruel44522882016-08-04 17:59:111017 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471018 },
yoshiki8e2ddbb2016-03-10 07:11:221019 "ui_arc_unittests": {
1020 "label": "//ui/arc:ui_arc_unittests",
1021 "type": "raw",
1022 "args": [],
1023 },
dprankecb4a2e242016-09-19 01:13:141024 "ui_junit_tests": {
1025 "label": "//ui/android:ui_junit_tests",
1026 "type": "junit_test",
1027 },
kylechar89355872016-08-02 17:59:571028 "ui_struct_traits_unittests": {
1029 "label": "//services/ui/public/interfaces:ui_struct_traits_unittests",
1030 "type": "console_test_launcher",
1031 },
dprankea55584f12015-07-22 00:52:471032 "ui_touch_selection_unittests": {
1033 "label": "//ui/touch_selection:ui_touch_selection_unittests",
dprankea21b31b02015-07-24 21:42:001034 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471035 },
1036 "unit_tests": {
1037 "label": "//chrome/test:unit_tests",
dprankef497c7962015-07-31 19:46:231038 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471039 },
1040 "url_unittests": {
1041 "label": "//url:url_unittests",
dpranke177c1e22015-07-22 23:07:431042 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471043 },
jbaumand69f1172017-01-10 01:46:491044 "video_decode_accelerator_unittest": {
1045 "label": "//media/gpu:video_decode_accelerator_unittest",
1046 "type": "raw",
1047 "args": [],
1048 },
qyearsley88bc4802016-05-17 18:02:341049 "views_mus_interactive_ui_tests": {
1050 "label": "//ui/views/mus:views_mus_interactive_ui_tests",
1051 "type": "windowed_test_launcher",
1052 },
msw2e3ff862016-02-26 02:20:091053 "views_mus_unittests": {
1054 "label": "//ui/views/mus:views_mus_unittests",
1055 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471056 },
1057 "views_unittests": {
1058 "label": "//ui/views:views_unittests",
thakis0d2610f22016-02-15 20:11:101059 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471060 },
bsheedy4b23d0b2016-09-20 23:35:031061 "vr_shell_unittests": {
1062 "label": "//chrome/browser/android/vr_shell:vr_shell_unittests",
1063 "type": "console_test_launcher",
1064 },
dprankecb4a2e242016-09-19 01:13:141065 "webapk_client_junit_tests": {
1066 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
1067 "type": "junit_test",
1068 },
1069 "webapk_shell_apk_junit_tests": {
dpranke43e6a6d2016-09-19 02:10:241070 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
dprankecb4a2e242016-09-19 01:13:141071 "type": "junit_test",
1072 },
tansell88df42592016-11-15 07:22:591073 "webkit_layout_tests": {
1074 "label": "//:webkit_layout_tests",
1075 "type": "script",
tansell0e6baaf22017-02-16 09:14:531076 "script": "//testing/scripts/run_isolated_script_test.py",
1077 "args": [
1078 "--xvfb",
1079 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1080 "--clobber-old-results",
1081 "--debug-rwt-logging",
1082 "--no-show-results",
1083 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1084 ],
1085 },
1086 "webkit_layout_tests_exparchive": {
1087 "label": "//:webkit_layout_tests_exparchive",
1088 "type": "script",
1089 "script": "//testing/scripts/run_isolated_script_test.py",
tansell88df42592016-11-15 07:22:591090 "args": [
1091 "--xvfb",
1092 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
tansell9ca24bfb2017-02-16 13:56:311093 "--seed", "4",
tansell88df42592016-11-15 07:22:591094 "--no-show-results",
tansell9ca24bfb2017-02-16 13:56:311095 "--full-results-html",
1096 "--clobber-old-results",
1097 "--exit-after-n-failures", "5000",
1098 "--exit-after-n-crashes-or-timeouts", "100",
1099 "--debug-rwt-logging",
tansell88df42592016-11-15 07:22:591100 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1101 ],
1102 },
dprankea55584f12015-07-22 00:52:471103 "webkit_unit_tests": {
Dirk Pranke1b64ac442015-12-10 01:47:021104 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
1105 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471106 },
1107 "wm_unittests": {
1108 "label": "//ui/wm:wm_unittests",
dprankea21b31b02015-07-24 21:42:001109 "type": "windowed_test_launcher",
dprankea55584f12015-07-22 00:52:471110 },
1111 "wtf_unittests": {
yutak6fbccaf2017-03-31 07:55:131112 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
Dirk Pranke1b64ac442015-12-10 01:47:021113 "type": "console_test_launcher",
dprankea55584f12015-07-22 00:52:471114 },
dprankea55584f12015-07-22 00:52:471115}