blob: 175def061add5d6feee1a93badf5e232a63cfe9a [file] [log] [blame]
## Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is a .pyl, or "Python Literal", file. You can treat it just like a
# .json file, with the following exceptions:
# * all keys must be quoted (use single quotes, please);
# * comments are allowed, using '#' syntax; and
# * trailing commas are allowed.
# gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and
# test type classifications for the tests that are run on the bots.
#
# This mapping is used by MB so that we can uniformly refer to test binaries
# by their Ninja target names in the recipes and not need to worry about how
# they are referred to in GN or GYP specifically (the GYP target name is pretty
# much always the same as the Ninja target name, since GYP target names are not
# hierarchical).
#
# TODO(crbug.com/816629): Remove the need for this file altogether :). Also,
# see below.
#
# The "label" field specifies the matching GN label for the given ninja
# target.
#
# The "type" field is used to determine what the command line for the test
# needs to be; valid values are:
#
# "windowed_test_launcher"
# : the test is a gtest-based test that uses the parallelizing TestLauncher
# from //base/test:test_support and needs to run under Xvfb if run on
# some platforms (eg. Linux Desktop and Ozone CrOS).
# "console_test_launcher"
# : the test is a gtest-based test that uses the parallelizing TestLauncher
# from //base/test:test_support but does not need Xvfb.
# "additional_compile_target"
# : this isn't actually a test, but we still need a mapping from the
# ninja target to the GN label in order to analyze it.
# "junit_test"
# : this is a JUnit test.
# "script"
# : the test is a python script; the path to the script is specified in
# the "script" field.
# "generated_script"
# : the test is a script generated at build time; the script *must* be
# in output_dir/bin/run_$target (or output_dir\bin\run_$target.bat on
# Windows).
# "unknown"
# : (the default), which indicates that we don't know what the command line
# needs to be (this is a fatal error).
# The optional "executable" field can be used to override the name
# of the binary to run. If the field is not specified, the binary
# name will be assumed to be the same as the ninja build target name.
# On Windows, ".exe" will be automatically appended if need be, so
# the executable name (and target name) should not contain an ".exe".
#
# The optional "args" field may be specified for "windowed_test_launcher",
# "console_test_launcher", and "script"-type tests, and can be used to
# append extra command line args onto the command line determined by the
# "type". If not specified, it defaults to an empty list (no extra args).
#
# The optional "label_type" field can be used in conjunction with
# "type" == "console_test_launcher" or "type" == "windowed_test_launcher"
# to indicate that even though the command line
# to use follows the test_launcher patterns, the actual GN label refers
# to a different type of thing (usually a "group") and so MB can find
# the generated runtime files in the right place. This is used, for
# example, in content_site_isolation_browsertests .
#
# The optional "script" field is used when "type" == "script", and
# specifies the GN path to the corresponding python file, e.g.
# "//testing/scripts/foo.py".
#
# The optional "skip_usage_check" field indicates that we should skip the check
# that the target is used in at least one buildbot json file.
{
"All_syzygy": {
"label": "//:All_syzygy",
"type": "additional_compile_target",
},
"absl_hardening_tests": {
"label": "//third_party/abseil-cpp:absl_hardening_tests",
"type": "console_test_launcher",
},
"accessibility_unittests": {
"label": "//ui/accessibility:accessibility_unittests",
"type": "console_test_launcher",
},
"android_browsertests": {
"label": "//chrome/test:android_browsertests",
"type": "windowed_test_launcher",
},
"android_lint_test": {
"label": "//build/android/test:android_lint_test",
"type": "additional_compile_target",
},
"android_sync_integration_tests": {
"label": "//chrome/test:android_sync_integration_tests",
"type": "windowed_test_launcher",
},
"android_tools": {
"label": "//tools/android:android_tools",
"type": "additional_compile_target",
},
"android_webview_junit_tests": {
"label": "//android_webview/test:android_webview_junit_tests",
"type": "junit_test",
},
"android_webview_unittests": {
"label": "//android_webview/test:android_webview_unittests",
"type": "console_test_launcher",
},
"angle_apks": {
"label": "//third_party/angle:angle_apks",
"type": "additional_compile_target",
},
"angle_deqp_egl_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles2_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles2_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles31_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles31_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles3_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles3_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_khr_gles2_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_khr_gles2_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_khr_gles3_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_khr_gles3_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_khr_gles31_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_khr_gles31_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_khr_gles32_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_khr_gles32_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles3_rotate180_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles3_rotate180_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles3_rotate270_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles3_rotate270_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles3_rotate90_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles3_rotate90_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles31_rotate180_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles31_rotate180_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles31_rotate270_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles31_rotate270_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_deqp_gles31_rotate90_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles31_rotate90_tests",
"type": "script",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
},
"angle_end2end_tests": {
"label": "//third_party/angle/src/tests:angle_end2end_tests",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
"type": "script",
},
"angle_gles1_conformance_tests": {
"label": "//third_party/angle/src/tests:angle_gles1_conformance_tests",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
"type": "script",
},
"angle_perftests": {
"label": "//third_party/angle/src/tests:angle_perftests",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"angle_restricted_trace_gold_tests": {
"type": "script",
"label": "//third_party/angle/src/tests/restricted_traces:angle_restricted_trace_gold_tests",
"script": "//third_party/angle/src/tests/restricted_traces/restricted_trace_gold_tests.py",
},
"angle_unittests": {
"label": "//third_party/angle/src/tests:angle_unittests",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
"type": "script",
},
"angle_white_box_tests": {
"label": "//third_party/angle/src/tests:angle_white_box_tests",
"script": "//third_party/angle/scripts/run_gtest_angle_test.py",
"type": "script",
},
"app_shell_unittests": {
"label": "//extensions/shell:app_shell_unittests",
"type": "windowed_test_launcher",
},
"ash_content_unittests": {
"label": "//ash/content:ash_content_unittests",
"type": "console_test_launcher",
},
"ash_unittests": {
"label": "//ash:ash_unittests",
"type": "windowed_test_launcher",
},
"aura_unittests": {
"label": "//ui/aura:aura_unittests",
"type": "windowed_test_launcher",
},
"base_junit_tests": {
"label": "//base:base_junit_tests",
"type": "junit_test",
},
"base_perftests": {
"args": [
"base_perftests",
"--non-telemetry=true",
"--test-launcher-print-test-stdio=always",
"--test-launcher-jobs=1",
"--test-launcher-retry-limit=0",
],
"label": "//base:base_perftests",
"skip_usage_check": True, # Used by Pinpoint: crbug.com/1042778
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"base_unittests": {
"label": "//base:base_unittests",
"type": "console_test_launcher",
},
"base_util_unittests": {
"label": "//base/util:base_util_unittests",
"type": "console_test_launcher",
},
"blink_common_unittests": {
"label": "//third_party/blink/common:blink_common_unittests",
"type": "console_test_launcher",
},
"blink_fuzzer_unittests": {
"label": "//third_party/blink/renderer/platform:blink_fuzzer_unittests",
"type": "console_test_launcher",
},
"blink_heap_unittests": {
"label": "//third_party/blink/renderer/platform/heap:blink_heap_unittests",
"type": "console_test_launcher",
},
"blink_platform_unittests": {
"label": "//third_party/blink/renderer/platform:blink_platform_unittests",
"type": "console_test_launcher",
},
"blink_python_tests": {
"label": "//:blink_python_tests",
"type": "generated_script",
},
"blink_tests": {
"label": "//:blink_tests",
"type": "additional_compile_target",
},
"blink_unittests": {
"label": "//third_party/blink/renderer/controller:blink_unittests",
"type": "console_test_launcher",
},
"blink_web_tests": {
"label": "//:blink_web_tests",
"type": "generated_script",
"args": [
"--results-directory",
"${ISOLATED_OUTDIR}",
],
},
"boundary_interface_example_apk": {
"label": "//android_webview/support_library/boundary_interfaces:boundary_interface_example_apk",
"type": "additional_compile_target",
},
"devtools_web_tests": {
"label": "//:devtools_web_tests",
"type": "generated_script",
"args": [
"--results-directory",
"${ISOLATED_OUTDIR}",
],
},
"boringssl_crypto_tests": {
"label": "//third_party/boringssl:boringssl_crypto_tests",
"type": "console_test_launcher",
},
"boringssl_ssl_tests": {
"label": "//third_party/boringssl:boringssl_ssl_tests",
"type": "console_test_launcher",
},
"breakpad_unittests": {
"label": "//third_party/breakpad:breakpad_unittests",
"type": "console_test_launcher",
},
"browser_switcher_bho_unittests": {
"label": "//chrome/browser/browser_switcher/bho:browser_switcher_bho_unittests",
"type": "console_test_launcher",
},
"browser_tests": {
"args": [
"--enable-high-dpi-support-for-testing",
],
"label": "//chrome/test:browser_tests",
"type": "windowed_test_launcher",
},
"browser_tests_apprtc": {
"label": "//chrome/test:browser_tests_apprtc",
"type": "windowed_test_launcher",
"executable": "browser_tests",
},
"captured_sites_interactive_tests": {
"label": "//chrome/test:captured_sites_interactive_tests",
"type": "windowed_test_launcher",
"args": [
'--disable-extensions',
],
},
"capture_unittests": {
"label": "//media/capture:capture_unittests",
"type": "windowed_test_launcher",
},
"cast_accessibility_unittests": {
"label": "//chromecast/browser/accessibility/flutter:cast_accessibility_unittests",
"type": "console_test_launcher",
},
"cast_display_settings_unittests": {
"label": "//chromecast/ui/display_settings:cast_display_settings_unittests",
"type": "console_test_launcher",
},
"cast_runner_browsertests": {
"label": "//fuchsia/runners:cast_runner_browsertests",
"type": "console_test_launcher",
},
"cast_runner_integration_tests": {
"label": "//fuchsia/runners:cast_runner_integration_tests",
"type": "console_test_launcher",
},
"cast_runner_pkg":{
"label": "//fuchsia/runners:cast_runner_pkg",
"type": "additonal_compile_target",
},
"cast_runner_unittests": {
"label": "//fuchsia/runners:cast_runner_unittests",
"type": "console_test_launcher",
},
"cast_audio_backend_unittests": {
"label": "//chromecast/media/cma/backend:cast_audio_backend_unittests",
"type": "console_test_launcher",
},
"cast_base_junit_tests": {
"label": "//chromecast/base:cast_base_junit_tests",
"type": "junit_test",
},
"cast_base_unittests": {
"label": "//chromecast/base:cast_base_unittests",
"type": "console_test_launcher",
},
"cast_crash_unittests": {
"label": "//chromecast/crash:cast_crash_unittests",
"type": "console_test_launcher",
},
"cast_graphics_unittests": {
"label": "//chromecast/graphics:cast_graphics_unittests",
"type": "console_test_launcher",
},
"cast_junit_test_lists": {
"label": "//chromecast:cast_junit_test_lists",
"type": "additional_compile_target",
},
"cast_media_unittests": {
"label": "//chromecast/media:cast_media_unittests",
"type": "console_test_launcher",
},
"cast_shell": {
"label": "//chromecast:cast_shell",
"type": "additional_compile_target",
},
"cast_shell_apk": {
"label": "//chromecast:cast_shell_apk",
"type": "additional_compile_target",
},
"cast_shell_browsertests": {
"label": "//chromecast:cast_shell_browsertests",
"type": "console_test_launcher",
},
"cast_shell_junit_tests": {
"label": "//chromecast/browser/android:cast_shell_junit_tests",
"type": "junit_test",
},
"cast_shell_unittests": {
"label": "//chromecast:cast_shell_unittests",
"type": "console_test_launcher",
},
"cast_test_lists": {
"label": "//chromecast:cast_test_lists",
"type": "additional_compile_target",
},
"cast_unittests": {
"label": "//media/cast:cast_unittests",
"type": "windowed_test_launcher",
},
"cc_perftests": {
"label": "//cc:cc_perftests",
"type": "additional_compile_target",
},
"cc_unittests": {
"label": "//cc:cc_unittests",
"type": "windowed_test_launcher",
},
"chrome": {
"label": "//chrome:chrome",
"type": "additional_compile_target",
},
"chrome_all_tast_tests": {
"label": "//chromeos:chrome_all_tast_tests",
"type": "generated_script",
"args": [
"--logs-dir=${ISOLATED_OUTDIR}",
],
},
"chrome_app_unittests": {
"label": "//chrome/test:chrome_app_unittests",
"type": "console_test_launcher",
},
"chrome_cleaner_unittests": {
"label": "//chrome/chrome_cleaner:chrome_cleaner_unittests",
"type": "console_test_launcher",
},
"chrome_elf_unittests": {
"label": "//chrome/chrome_elf:chrome_elf_unittests",
"type": "console_test_launcher",
},
"chrome_java_test_pagecontroller_junit_tests": {
"label": "//chrome/test/android:chrome_java_test_pagecontroller_junit_tests",
"type": "junit_test"
},
"chrome_java_test_pagecontroller_tests": {
"args": [
"--use-apk-under-test-flags-file",
],
"label": "//chrome/test/android:chrome_java_test_pagecontroller_tests",
"type": "console_test_launcher"
},
"chrome_java_test_webapk_launch_tests": {
"label": "//chrome/test/android:chrome_java_test_webapk_launch_tests",
"type": "console_test_launcher",
},
"chrome_java_test_wpr_tests": {
"label": "//chrome/test/android:chrome_java_test_wpr_tests",
"type": "console_test_launcher",
},
"chrome_junit_tests": {
"label": "//chrome/android:chrome_junit_tests",
"type": "junit_test",
},
"chrome_modern_public_bundle_smoke_test": {
"label": "//chrome/android:chrome_modern_public_bundle_smoke_test",
"type": "console_test_launcher",
},
"chrome_modern_public_bundle_fake_modules_smoke_test": {
"label": "//chrome/android:chrome_modern_public_bundle_fake_modules_smoke_test",
"type": "console_test_launcher",
},
"chrome_official_builder": {
"label": "//:chrome_official_builder",
"type": "additional_compile_target",
},
"chrome_official_builder_no_unittests": {
"label": "//:chrome_official_builder_no_unittests",
"type": "additional_compile_target",
},
"chrome_public_apk": {
"label": "//chrome/android:chrome_public_apk",
"type": "additional_compile_target",
},
"chrome_public_smoke_test": {
"label": "//chrome/android:chrome_public_smoke_test",
"type": "console_test_launcher",
},
"chrome_public_test_apk": {
"label": "//chrome/android:chrome_public_test_apk",
"type": "console_test_launcher",
},
"chrome_public_test_vr_apk": {
"label": "//chrome/android:chrome_public_test_vr_apk",
"type": "console_test_launcher",
},
"chrome_public_wpt": {
"label": "//chrome/android:chrome_public_wpt",
"type": "generated_script",
},
"chrome_sandbox": {
"label": "//sandbox/linux:chrome_sandbox",
"type": "additional_compile_target",
},
"chrome_sizes": {
"label": "//chrome/test:chrome_sizes",
"type": "generated_script",
},
"chromedriver": {
"label": "//chrome/test/chromedriver:chromedriver",
"type": "additional_compile_target",
},
"chromedriver_py_tests": {
"args": [
"../../testing/scripts/run_chromedriver_tests.py",
"../../chrome/test/chromedriver/test/run_py_tests.py",
"--chromedriver=chromedriver",
"--log-path=${ISOLATED_OUTDIR}/chromedriver.log",
],
"label": "//chrome/test/chromedriver:chromedriver_py_tests",
"script": "//testing/xvfb.py",
"type": "script",
},
"chromedriver_webview_shell_apk": {
"label": "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
"type": "additional_compile_target",
},
"webdriver_wpt_tests": {
"label": "//:webdriver_wpt_tests",
"type": "generated_script",
"args": [
"../../chrome/test/chromedriver/test/run_webdriver_tests.py",
"-v",
"--chromedriver=chromedriver",
"--log-path=${ISOLATED_OUTDIR}/chromedriver.log",
"--output-dir=${ISOLATED_OUTDIR}",
"--test-path=../../third_party/blink/web_tests/external/wpt/webdriver/tests/",
],
},
"wpt_tests_isolate": {
"label": "//:wpt_tests_isolate",
"type": "generated_script",
},
"chrome/browser/media/router": {
"label": "//chrome/browser/media/router:router",
"type": "additional_compile_target",
},
"chrome/browser/media/router:openscreen_unittests": {
"label": "//chrome/browser/media/router:openscreen_unittests",
"type": "additional_compile_target",
},
"chrome/browser/media/router:unittests": {
"label": "//chrome/browser/media/router:unittests",
"type": "additional_compile_target",
},
"chrome/installer/linux": {
"label": "//chrome/installer/linux:linux",
"type": "additional_compile_target",
},
"chromedriver_replay_unittests": {
"label": "//chrome/test/chromedriver:chromedriver_replay_unittests",
"script": "//chrome/test/chromedriver/log_replay/client_replay_unittest.py",
"type": "script",
},
"chromedriver_unittests": {
"label": "//chrome/test/chromedriver:chromedriver_unittests",
"type": "windowed_test_launcher",
},
"chromeos_components_unittests": {
"label": "//chromeos/components:chromeos_components_unittests",
"type": "console_test_launcher",
},
"chromeos_unittests": {
"label": "//chromeos:chromeos_unittests",
"type": "console_test_launcher",
},
"chromium_builder_asan": {
"label": "//:chromium_builder_asan",
"type": "additional_compile_target",
},
"chromium_builder_perf": {
"label": "//:chromium_builder_perf",
"type": "additional_compile_target",
},
"chromiumos_preflight": {
"label": "//:chromiumos_preflight",
"type": "additional_compile_target",
},
"color_unittests": {
"label": "//ui/color:color_unittests",
"type": "console_test_launcher",
},
"command_buffer_perftests": {
"args": [
"command_buffer_perftests",
"--non-telemetry=true",
"--adb-path",
"src/third_party/android_sdk/public/platform-tools/adb",
],
"label": "//gpu:command_buffer_perftests",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"components/cast_certificate": {
"label": "//components/cast_certificate:cast_certificate",
"type": "additional_compile_target",
},
"components/cast_certificate:unit_tests": {
"label": "//components/cast_certificate:unit_tests",
"type": "additional_compile_target",
},
"components/cast_channel": {
"label": "//components/cast_channel:cast_channel",
"type": "additional_compile_target",
},
"components/cast_channel:unit_tests": {
"label": "//components/cast_channel:unit_tests",
"type": "additional_compile_target",
},
"components/mirroring/browser": {
"label": "//components/mirroring/browser:browser",
"type": "additional_compile_target",
},
"components/mirroring/service:mirroring_service": {
"label": "//components/mirroring/service:mirrroring_service",
"type": "additional_compile_target",
},
"components/mirroring:mirroring_tests": {
"label": "//components/mirroring:mirroring_tests",
"type": "additional_compile_target",
},
"components/mirroring:mirroring_unittests": {
"label": "//components/mirroring:mirroring_unittests",
"type": "additional_compile_target",
},
"components/openscreen_platform": {
"label": "//components/openscreen_platform:openscreen_platform",
"type": "additional_compile_target",
},
"components_browsertests": {
"label": "//components:components_browsertests",
"type": "windowed_test_launcher",
},
"components_junit_tests": {
"label": "//components:components_junit_tests",
"type": "junit_test",
},
"components_perftests": {
"args": [
"--xvfb",
"--non-telemetry=true",
"components_perftests",
],
"label": "//components:components_perftests",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"components_unittests": {
"label": "//components:components_unittests",
"type": "windowed_test_launcher",
},
"compositor_unittests": {
"label": "//ui/compositor:compositor_unittests",
"type": "windowed_test_launcher",
},
"content_browsertests": {
"label": "//content/test:content_browsertests",
"type": "windowed_test_launcher",
},
"content_junit_tests": {
"label": "//content/public/android:content_junit_tests",
"type": "junit_test",
},
"content_nocompile_tests": {
"label": "//content/test:content_nocompile_tests",
"type": "console_test_launcher",
},
"content_shell_crash_test": {
"label": "//content/shell:content_shell_crash_test",
"script": "//testing/scripts/content_shell_crash_test.py",
"type": "script",
},
"content_shell_test_apk": {
"label": "//content/shell/android:content_shell_test_apk",
"type": "console_test_launcher",
},
"content_unittests": {
"label": "//content/test:content_unittests",
"type": "windowed_test_launcher",
},
"courgette_unittests": {
"label": "//courgette:courgette_unittests",
"type": "console_test_launcher",
},
"cr_fuchsia_base_unittests": {
"label": "//fuchsia/base:cr_fuchsia_base_unittests",
"type": "console_test_launcher",
},
"crashpad_tests": {
"label": "//third_party/crashpad/crashpad:crashpad_tests",
"type": "console_test_launcher",
},
"cronet_package": {
"label": "//components/cronet:cronet_package",
"type": "additional_compile_target",
},
"cronet_perf_test_apk": {
"label": "//components/cronet/android:cronet_perf_test_apk",
"type": "additional_compile_target",
},
"cronet_sample_test_apk": {
"label": "//components/cronet/android:cronet_sample_test_apk",
"type": "console_test_launcher",
},
"cronet_sizes": {
"label": "//components/cronet/android:cronet_sizes",
"type": "generated_script",
},
"cronet_smoketests_missing_native_library_instrumentation_apk": {
"label": "//components/cronet/android:cronet_smoketests_missing_native_library_instrumentation_apk",
"type": "console_test_launcher",
},
"cronet_smoketests_platform_only_instrumentation_apk": {
"label": "//components/cronet/android:cronet_smoketests_platform_only_instrumentation_apk",
"type": "console_test_launcher",
},
"cronet_test": {
"label": "//components/cronet/ios/test:cronet_test",
"type": "generated_script",
},
"cronet_test_instrumentation_apk": {
"label": "//components/cronet/android:cronet_test_instrumentation_apk",
"type": "console_test_launcher",
},
"cronet_tests": {
"label": "//components/cronet:cronet_tests",
"type": "console_test_launcher",
},
"cronet_tests_android": {
"label": "//components/cronet/android:cronet_tests_android",
"type": "console_test_launcher",
},
"cronet_unittests": {
"label": "//components/cronet:cronet_unittests",
"type": "console_test_launcher",
},
"cronet_unittests_android": {
"label": "//components/cronet/android:cronet_unittests_android",
"type": "console_test_launcher",
},
"cronet_unittests_ios": {
"label": "//components/cronet/ios:cronet_unittests_ios",
"type": "console_test_launcher",
},
"crypto_unittests": {
"label": "//crypto:crypto_unittests",
"type": "console_test_launcher",
},
"dawn_end2end_tests": {
"label": "//third_party/dawn/src/tests:dawn_end2end_tests",
"type": "windowed_test_launcher",
},
"dawn_perf_tests": {
"args": [
"dawn_perf_tests",
"--non-telemetry=true",
"--test-launcher-print-test-stdio=always",
"--test-launcher-jobs=1",
"--test-launcher-retry-limit=0",
],
"label": "//third_party/dawn/src/tests:dawn_perf_tests",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"dbus_unittests": {
"label": "//dbus:dbus_unittests",
"type": "windowed_test_launcher",
},
"delayloads_unittests": {
"label": "//chrome/test:delayloads_unittests",
"type": "console_test_launcher",
},
"device_junit_tests": {
"label": "//device:device_junit_tests",
"type": "junit_test",
},
"device_unittests": {
"label": "//device:device_unittests",
"type": "console_test_launcher",
},
"disk_usage_tast_test": {
"label": "//chromeos:disk_usage_tast_test",
"type": "generated_script",
"args": [
"--logs-dir=${ISOLATED_OUTDIR}",
],
},
"display_unittests": {
"label": "//ui/display:display_unittests",
"type": "console_test_launcher",
},
"dump_syms": {
"label": "//third_party/breakpad:dump_syms",
"type": "additional_compile_target",
},
"elevation_service_unittests": {
"label": "//chrome/elevation_service:elevation_service_unittests",
"type": "windowed_test_launcher",
},
"empty_main": {
"label": "//testing:empty_main",
"type": "additional_compile_target",
},
"errorprone_plugin_tests": {
"label": "//tools/android/errorprone_plugin/test:errorprone_plugin_tests",
"type": "additional_compile_target",
},
"events_unittests": {
"label": "//ui/events:events_unittests",
"type": "windowed_test_launcher",
},
"exo_unittests": {
"label": "//components/exo:exo_unittests",
"type": "windowed_test_launcher",
},
"extensions_browsertests": {
"label": "//extensions:extensions_browsertests",
"type": "windowed_test_launcher",
},
"extensions_unittests": {
"label": "//extensions:extensions_unittests",
"type": "windowed_test_launcher",
},
"filesystem_service_unittests": {
"label": "//components/services/filesystem:filesystem_service_unittests",
"type": "console_test_launcher",
},
"flatbuffers_unittests": {
"label": "//third_party/flatbuffers:flatbuffers_unittests",
"script": "//testing/scripts/run_flatbuffers_unittests.py",
"type": "script",
},
"fuchsia_sizes": {
"label": "//fuchsia/release:fuchsia_sizes",
"type": "generated_script",
},
"fuchsia_telemetry_gpu_integration_test": {
"args": [
"../../content/test/gpu/run_gpu_integration_test_fuchsia.py",
],
"label": "//content/test:fuchsia_telemetry_gpu_integration_test",
"script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
"type": "script",
},
"gcm_unit_tests": {
"label": "//google_apis/gcm:gcm_unit_tests",
"type": "console_test_launcher",
},
"gcp_unittests": {
"label": "//chrome/credential_provider/test:gcp_unittests",
"type": "console_test_launcher",
},
"gfx_unittests": {
"label": "//ui/gfx:gfx_unittests",
"type": "console_test_launcher",
},
"gin_unittests": {
"label": "//gin:gin_unittests",
"type": "console_test_launcher",
},
"gl_tests": {
"args": [],
"label": "//gpu:gl_tests",
"type": "windowed_test_launcher",
},
"gl_unittests": {
"label": "//ui/gl:gl_unittests",
"type": "windowed_test_launcher",
},
"gl_unittests_ozone": {
"executable": "gl_unittests",
"label": "//ui/gl:gl_unittests_ozone",
"label_type": "group",
"type": "windowed_test_launcher",
},
"gles2_conform_test": {
"label": "//gpu/gles2_conform_support:gles2_conform_test",
"type": "console_test_launcher",
},
"gn_all": {
"label": "//:gn_all",
"type": "additional_compile_target",
},
"google_apis_unittests": {
"label": "//google_apis:google_apis_unittests",
"type": "console_test_launcher",
},
"gpu_perftests": {
"args": [
"gpu_perftests",
"--non-telemetry=true",
"--adb-path",
"src/third_party/android_sdk/public/platform-tools/adb",
],
"label": "//gpu:gpu_perftests",
"skip_usage_check": True, # Used by Pinpoint: crbug.com/1042778
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"gpu_unittests": {
"label": "//gpu:gpu_unittests",
"type": "windowed_test_launcher",
},
"grit_python_unittests": {
"args": [
"../../tools/grit/grit/test_suite_all.py",
],
"label": "//tools/grit:grit_python_unittests",
"script": "//testing/scripts/run_isolated_script_test.py",
"type": "script",
},
"gtk_unittests": {
"label": "//ui/gtk:gtk_unittests",
"type": "windowed_test_launcher",
},
"gwp_asan_unittests": {
"label": "//components/gwp_asan:gwp_asan_unittests",
"type": "console_test_launcher",
},
"headless_browsertests": {
"label": "//headless:headless_browsertests",
"type": "console_test_launcher",
},
"headless_unittests": {
"label": "//headless:headless_unittests",
"type": "console_test_launcher",
},
"http_pkg": {
"label": "//fuchsia/http:http_pkg",
"type": "additonal_compile_target",
},
"http_service_tests": {
"label": "//fuchsia/http:http_service_tests",
"type": "console_test_launcher",
},
"install_static_unittests": {
"label": "//chrome/install_static:install_static_unittests",
"type": "console_test_launcher",
},
"installer_util_unittests": {
"label": "//chrome/installer/util:installer_util_unittests",
"type": "console_test_launcher",
},
"interactive_ui_tests": {
"args": [
"--enable-high-dpi-support-for-testing",
"--snapshot-output-dir=${ISOLATED_OUTDIR}",
],
"label": "//chrome/test:interactive_ui_tests",
"type": "windowed_test_launcher",
},
"ios_chrome_bookmarks_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_bookmarks_egtests",
"type": "generated_script",
},
"ios_chrome_integration_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
"type": "generated_script",
},
"ios_chrome_reading_list_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
"type": "generated_script",
},
"ios_chrome_settings_egtests": {
"args": [
"--enable-features=ClearSyncedData",
],
"label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
"type": "generated_script",
},
"ios_chrome_signin_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_signin_egtests",
"type": "generated_script",
},
"ios_chrome_translate_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_translate_egtests",
"type": "generated_script",
},
"ios_chrome_smoke_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
"type": "generated_script",
},
"ios_chrome_ui_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
"type": "generated_script",
},
"ios_chrome_unittests": {
"label": "//ios/chrome/test:ios_chrome_unittests",
"type": "generated_script",
},
"ios_chrome_web_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
"type": "generated_script",
},
"ios_chrome_bookmarks_eg2tests_module": {
"label": "//ios/chrome/test/earl_grey2:ios_chrome_bookmarks_eg2tests_module",
"type": "generated_script",
},
"ios_chrome_integration_eg2tests_module": {
"label": "//ios/chrome/test/earl_grey2:ios_chrome_integration_eg2tests_module",
"type": "generated_script",
},
"ios_chrome_settings_eg2tests_module": {
"label": "//ios/chrome/test/earl_grey2:ios_chrome_settings_eg2tests_module",
"type": "generated_script",
},
"ios_chrome_signin_eg2tests_module": {
"label": "//ios/chrome/test/earl_grey2:ios_chrome_signin_eg2tests_module",
"type": "generated_script",
},
"ios_chrome_smoke_eg2tests_module": {
"label": "//ios/chrome/test/earl_grey2:ios_chrome_smoke_eg2tests_module",
"type": "generated_script",
},
"ios_chrome_ui_eg2tests_module": {
"label": "//ios/chrome/test/earl_grey2:ios_chrome_ui_eg2tests_module",
"type": "generated_script",
},
"ios_chrome_web_eg2tests_module": {
"label": "//ios/chrome/test/earl_grey2:ios_chrome_web_eg2tests_module",
"type": "generated_script",
},
"ios_crash_xcuitests_module": {
"label": "//third_party/crashpad/crashpad/test/ios:ios_crash_xcuitests_module",
"type": "generated_script",
},
"ios_components_unittests": {
"label": "//ios/components:ios_components_unittests",
"type": "generated_script",
},
"ios_net_unittests": {
"label": "//ios/net:ios_net_unittests",
"type": "generated_script",
},
"ios_remoting_unittests": {
"label": "//remoting/ios:ios_remoting_unittests",
"type": "generated_script",
},
"ios_showcase_egtests": {
"label": "//ios/showcase:ios_showcase_egtests",
"type": "generated_script",
},
"ios_showcase_eg2tests_module": {
"label": "//ios/showcase:ios_showcase_eg2tests_module",
"type": "generated_script",
},
"ios_testing_unittests": {
"label": "//ios/testing:ios_testing_unittests",
"type": "generated_script",
},
"ios_web_inttests": {
"label": "//ios/web:ios_web_inttests",
"type": "generated_script",
},
"ios_web_shell_eg2tests_module": {
"label": "//ios/web/shell/test:ios_web_shell_eg2tests_module",
"type": "generated_script",
},
"ios_web_shell_egtests": {
"label": "//ios/web/shell/test:ios_web_shell_egtests",
"type": "generated_script",
},
"ios_web_unittests": {
"label": "//ios/web:ios_web_unittests",
"type": "generated_script",
},
"ios_web_view_inttests": {
"label": "//ios/web_view:ios_web_view_inttests",
"type": "generated_script",
},
"ios_web_view_unittests": {
"label": "//ios/web_view:ios_web_view_unittests",
"type": "generated_script",
},
"ipc_tests": {
"label": "//ipc:ipc_tests",
"type": "console_test_launcher",
},
"jingle_unittests": {
"label": "//jingle:jingle_unittests",
"type": "console_test_launcher",
},
"junit_unit_tests": {
"label": "//testing/android/junit:junit_unit_tests",
"type": "junit_test",
},
"keyboard_accessory_junit_tests": {
"label": "//chrome/android/features/keyboard_accessory:keyboard_accessory_junit_tests",
"type": "junit_test",
},
"keyboard_unittests": {
"label": "//ash/keyboard/ui:keyboard_unittests",
"type": "windowed_test_launcher",
},
"lacros_all_tast_tests": {
"label": "//chromeos/lacros:lacros_all_tast_tests",
"type": "generated_script",
"args": [
"--logs-dir=${ISOLATED_OUTDIR}",
],
},
"lacros_smoke_tast_tests": {
"label": "//chromeos/lacros:lacros_smoke_tast_tests",
"type": "generated_script",
"args": [
"--logs-dir=${ISOLATED_OUTDIR}",
],
},
"lacros_chrome_browsertests": {
"label": "//chrome/test:lacros_chrome_browsertests",
"type": "windowed_test_launcher",
},
"lacros_chrome_unittests": {
"label": "//chrome/test:lacros_chrome_unittests",
"type": "console_test_launcher",
},
"latency_unittests": {
"label": "//ui/latency:latency_unittests",
"type": "console_test_launcher",
},
"libcups_unittests": {
"label": "//chrome/services/cups_proxy:libcups_unittests",
"type": "console_test_launcher",
},
"libjingle_xmpp_unittests": {
"label": "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
"type": "console_test_launcher",
},
"liburlpattern_unittests": {
"label": "//third_party/liburlpattern:liburlpattern_unittests",
"type": "console_test_launcher",
},
"linux_symbols": {
"label": "//chrome:linux_symbols",
"type": "additional_compile_target",
},
"load_library_perf_tests": {
"args": [
"load_library_perf_tests",
"--non-telemetry=true",
"--test-launcher-print-test-stdio=always",
],
"label": "//chrome/test:load_library_perf_tests",
"skip_usage_check": True, # Used by Pinpoint: crbug.com/1042778
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"mac_signing_tests": {
"label": "//chrome/installer/mac:mac_signing_tests",
"type": "generated_script",
},
"media_base_junit_tests": {
"label": "//media/base/android:media_base_junit_tests",
"type": "junit_test",
},
"media_blink_unittests": {
"label": "//media/blink:media_blink_unittests",
"type": "windowed_test_launcher",
},
"media_perftests": {
"args": [
"media_perftests",
"--non-telemetry=true",
"--single-process-tests",
"--test-launcher-retry-limit=0",
"--isolated-script-test-filter=*::-*_unoptimized::*_unaligned::*unoptimized_aligned",
],
"label": "//media:media_perftests",
"skip_usage_check": True, # Used by Pinpoint: crbug.com/1042778
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"media_router_e2e_tests": {
"args": [
"--extension",
"mr_extension/",
"--test_binary",
"./browser_tests",
],
"label": "//chrome/test/media_router:media_router_e2e_tests",
"script": "//chrome/test/media_router/internal/media_router_tests.py",
"type": "script",
},
"media_router_perf_tests": {
"args": [
"--browser=release",
"--also-run-disabled-tests",
"-v",
"--use-live-sites",
"--output-format=histograms",
"--output-dir=${ISOLATED_OUTDIR}",
],
"label": "//chrome/test/media_router:media_router_perf_tests",
"script": "//tools/perf/contrib/media_router_benchmarks/run_benchmark.py",
"type": "script",
},
"media_unittests": {
"label": "//media:media_unittests",
"type": "windowed_test_launcher",
},
"message_center_unittests": {
"label": "//ui/message_center:message_center_unittests",
"type": "windowed_test_launcher",
},
"metrics_python_tests": {
"args": [
"../../tools/metrics/metrics_python_tests.py",
],
"label": "//tools/metrics:metrics_python_tests",
"script": "//testing/scripts/run_isolated_script_test.py",
"type": "script",
},
"microdump_stackwalk": {
"label": "//third_party/breakpad:microdump_stackwalk",
"type": "additional_compile_target",
},
"midi_unittests": {
"label": "//media/midi:midi_unittests",
"type": "windowed_test_launcher",
},
"mini_installer": {
"label": "//chrome/installer/mini_installer:mini_installer",
"type": "additional_compile_target",
},
"mini_installer_tests": {
"args": [
"--isolated-script-test-output=${ISOLATED_OUTDIR}/results.json",
"../../chrome/test/mini_installer/run_mini_installer_tests.py",
"--output-dir=${ISOLATED_OUTDIR}",
],
"label": "//chrome/test/mini_installer:mini_installer_tests",
"script": "//testing/scripts/run_isolated_script_test.py",
"type": "script",
},
"module_installer_junit_tests": {
"label": "//components/module_installer/android:module_installer_junit_tests",
"type": "junit_test",
},
"monochrome_public_smoke_test": {
"label": "//chrome/android:monochrome_public_smoke_test",
"type": "console_test_launcher",
},
"monochrome_public_bundle_smoke_test": {
"label": "//chrome/android:monochrome_public_bundle_smoke_test",
"type": "console_test_launcher",
},
"monochrome_public_bundle_fake_modules_smoke_test": {
"label": "//chrome/android:monochrome_public_bundle_fake_modules_smoke_test",
"type": "console_test_launcher",
},
"mojo_core_unittests": {
"label": "//mojo/core:mojo_core_unittests",
"type": "console_test_launcher",
},
"mojo_python_unittests": {
"args": [
"../../mojo/public/tools/run_all_python_unittests.py",
],
"label": "//mojo/public/tools:mojo_python_unittests",
"script": "//testing/scripts/run_isolated_script_test.py",
"type": "script",
},
"mojo_test_apk": {
"label": "//mojo/public/java/system:mojo_test_apk",
"type": "console_test_launcher",
},
"mojo_unittests": {
"label": "//mojo:mojo_unittests",
"type": "console_test_launcher",
},
"monochrome_public_apk_checker": {
"args": [
"../../chrome/android/monochrome/scripts/monochrome_python_tests.py",
"--chrome-apk",
"apks/ChromePublic.apk",
"--chrome-pathmap",
"apks/ChromePublic.apk.pathmap.txt",
"--system-webview-apk",
"apks/SystemWebView.apk",
"--system-webview-pathmap",
"apks/SystemWebView.apk.pathmap.txt",
"--monochrome-apk",
"apks/MonochromePublic.apk",
"--monochrome-pathmap",
"apks/MonochromePublic.apk.pathmap.txt",
],
"label": "//chrome/android/monochrome:monochrome_public_apk_checker",
"script": "//testing/scripts/run_isolated_script_test.py",
"type": "script",
},
"monochrome_public_test_ar_apk": {
"label": "//chrome/android:monochrome_public_test_ar_apk",
"type": "console_test_launcher",
},
"monochrome_static_initializers": {
"label": "//chrome/android:monochrome_static_initializers",
"type": "additional_compile_target",
},
"nacl_helper": {
"label": "//components/nacl/loader:nacl_helper",
"skip_usage_check": True,
"type": "additional_compile_target",
},
"nacl_helper_bootstrap": {
"label": "//native_client/src/trusted/service_runtime/linux:bootstrap",
"skip_usage_check": True,
"type": "additional_compile_target",
},
"nacl_helper_nonsfi_unittests": {
"label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
"type": "console_test_launcher",
},
"nacl_loader_unittests": {
"label": "//components/nacl/loader:nacl_loader_unittests",
"type": "console_test_launcher",
},
"native_theme_unittests": {
"label": "//ui/native_theme:native_theme_unittests",
"type": "windowed_test_launcher",
},
"net_junit_tests": {
"label": "//net/android:net_junit_tests",
"type": "junit_test",
},
"net_perftests": {
"args": [
"net_perftests",
"--non-telemetry=true",
],
"label": "//net:net_perftests",
"script": "//testing/scripts/run_performance_tests.py",
"skip_usage_check": True, # Used by Pinpoint: crbug.com/1042778
"type": "script",
},
"net_unittests": {
"label": "//net:net_unittests",
"type": "console_test_launcher",
},
"notification_helper_unittests": {
"label": "//chrome/notification_helper:notification_helper_unittests",
"type": "windowed_test_launcher",
},
"opus_tests": {
"label": "//third_party/opus:opus_tests",
"type": "console_test_launcher",
},
"openscreen_unittests": {
"label": "//chrome/browser/media/router:openscreen_unittests",
"type": "console_test_launcher",
},
"ozone_gl_unittests": {
"label": "//ui/ozone/gl:ozone_gl_unittests",
"type": "console_test_launcher",
},
"ozone_unittests": {
"label": "//ui/ozone:ozone_unittests",
"type": "console_test_launcher",
},
"ozone_x11_unittests": {
"label": "//ui/ozone:ozone_x11_unittests",
"type": "windowed_test_launcher",
},
"paint_preview_junit_tests": {
"label": "//components/paint_preview/player/android:paint_preview_junit_tests",
"type": "junit_test",
},
"password_check_junit_tests": {
"label": "//chrome/browser/password_check/android:password_check_junit_tests",
"type": "junit_test",
},
"password_manager_junit_tests": {
"label": "//chrome/browser/password_manager/android:password_manager_junit_tests",
"type": "junit_test",
},
"pdf_fuzzers": {
"label": "//pdf/pdfium/fuzzers:pdf_fuzzers",
"type": "additional_compile_target",
},
"pdf_unittests": {
"label": "//pdf:pdf_unittests",
"type": "console_test_launcher",
},
"pdfium_test": {
"label": "//third_party/pdfium/samples:pdfium_test",
"type": "additional_compile_target",
},
"perfetto_unittests": {
"label": "//third_party/perfetto:perfetto_unittests",
"type": "console_test_launcher",
},
"performance_browser_tests": {
"args": [
"browser_tests",
"--non-telemetry=true",
"--full-performance-run",
"--test-launcher-jobs=1",
"--test-launcher-retry-limit=0",
"--test-launcher-print-test-stdio=always",
# Allow the full performance runs to take up to 60 seconds (rather than
# the default of 30 for normal CQ browser test runs).
"--ui-test-action-timeout=60000",
"--ui-test-action-max-timeout=60000",
"--test-launcher-timeout=60000",
"--gtest_filter=*/TabCapturePerformanceTest.*:*/CastV2PerformanceTest.*",
],
"label": "//chrome/test:performance_browser_tests",
"skip_usage_check": True, # Used by Pinpoint: crbug.com/1042778
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"performance_test_suite": {
"label": "//chrome/test:performance_test_suite",
"type": "generated_script",
},
"performance_test_suite_eve": {
"label": "//chrome/test:performance_test_suite_eve",
"type": "generated_script",
},
"performance_web_engine_test_suite": {
"args": [
"../../content/test/gpu/run_telemetry_benchmark_fuchsia.py",
],
"label": "//content/test:performance_web_engine_test_suite",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"performance_webview_test_suite": {
"args": [
"remove",
"--package",
"com.android.webview",
"com.google.android.webview",
"-v",
"--",
"../../testing/scripts/run_performance_tests.py",
"../../tools/perf/run_benchmark",
],
"label": "//chrome/test:performance_webview_test_suite",
"script": "//third_party/catapult/devil/devil/android/tools/system_app.py",
"type": "script",
},
"performance_weblayer_test_suite": {
"args": [
"../../tools/perf/run_benchmark",
],
"label": "//chrome/test:performance_weblayer_test_suite",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"polymer_tools_python_unittests": {
"args": [
"../../tools/polymer/run_polymer_tools_tests.py",
],
"label": "//tools/polymer:polymer_tools_python_unittests",
"script": "//testing/scripts/run_isolated_script_test.py",
"type": "script",
},
"postmortem-metadata": {
"label": "//v8:postmortem-metadata",
"type": "additional_compile_target",
},
"ppapi_unittests": {
"label": "//ppapi:ppapi_unittests",
"type": "console_test_launcher",
},
"previous_version_mini_installer": {
"label": "//chrome/installer/mini_installer:previous_version_mini_installer",
"type": "additional_compile_target",
},
"printing_unittests": {
"label": "//printing:printing_unittests",
"type": "console_test_launcher",
},
"profile_provider_unittest": {
"label": "//chrome/browser/metrics/perf:profile_provider_unittest",
"type": "console_test_launcher",
},
"push_apps_to_background_apk": {
"label": "//tools/android/push_apps_to_background:push_apps_to_background_apk",
"type": "additional_compile_target",
},
"remoting/client:client": {
"label": "//remoting/client:client",
"type": "additional_compile_target",
},
"remoting/host:host": {
"label": "//remoting/host:host",
"type": "additional_compile_target",
},
"remoting_unittests": {
"label": "//remoting:remoting_unittests",
"type": "console_test_launcher",
},
"rendering_representative_perf_tests": {
"args": [
"--output-format=csv",
"--browser=release",
"--upload-results",
],
"label": "//chrome/test:rendering_representative_perf_tests",
"script": "//testing/scripts/run_rendering_benchmark_with_gated_performance.py",
"type": "script",
},
"resource_sizes_chrome_modern_public_minimal_apks": {
"label": "//chrome/android:resource_sizes_chrome_modern_public_minimal_apks",
"type": "generated_script",
},
"resource_sizes_chromecast": {
"label": "//chromecast:resource_sizes_chromecast",
"type": "generated_script",
},
"resource_sizes_cronet_sample_apk": {
"label": "//components/cronet/android:resource_sizes_cronet_sample_apk",
"type": "generated_script",
},
'resource_sizes_lacros_chrome': {
"label": "//chromeos/lacros:resource_sizes_lacros_chrome",
"type": "generated_script",
},
"resource_sizes_monochrome_public_minimal_apks": {
"label": "//chrome/android:resource_sizes_monochrome_public_minimal_apks",
"type": "generated_script",
},
"resource_sizes_trichrome": {
"label": "//chrome/android:resource_sizes_trichrome",
"type": "generated_script",
},
"resource_sizes_system_webview_bundle": {
"label": "//android_webview:resource_sizes_system_webview_bundle",
"type": "generated_script",
},
"sandbox_linux_unittests": {
"label": "//sandbox/linux:sandbox_linux_unittests",
"type": "console_test_launcher",
},
"sandbox_mac_unittests": {
"label": "//sandbox/mac:sandbox_mac_unittests",
"type": "console_test_launcher",
},
"sbox_integration_tests": {
"label": "//sandbox/win:sbox_integration_tests",
"type": "console_test_launcher",
},
"sbox_unittests": {
"label": "//sandbox/win:sbox_unittests",
"type": "console_test_launcher",
},
"sbox_validation_tests": {
"label": "//sandbox/win:sbox_validation_tests",
"type": "console_test_launcher",
},
"services_junit_tests": {
"label": "//services:services_junit_tests",
"type": "junit_test",
},
"service_manager_unittests": {
"label": "//services/service_manager/tests:service_manager_unittests",
"type": "console_test_launcher",
},
"services_unittests": {
"label": "//services:services_unittests",
"type": "windowed_test_launcher",
},
"setup_unittests": {
"label": "//chrome/installer/setup:setup_unittests",
"type": "console_test_launcher",
},
"shell_encryption_unittests": {
"label": "//third_party/shell-encryption:shell_encryption_unittests",
"type": "console_test_launcher",
},
"shell_dialogs_unittests": {
"label": "//ui/shell_dialogs:shell_dialogs_unittests",
"type": "console_test_launcher",
},
"shipped_binaries": {
"label": "//:shipped_binaries",
"type": "additional_compile_target",
},
"skia_unittests": {
"label": "//skia:skia_unittests",
"type": "console_test_launcher",
},
"snapshot_unittests": {
"label": "//ui/snapshot:snapshot_unittests",
"type": "windowed_test_launcher",
},
"sql_unittests": {
"label": "//sql:sql_unittests",
"type": "console_test_launcher",
},
"storage_unittests": {
"label": "//storage:storage_unittests",
"type": "console_test_launcher",
},
"swiftshader_unittests": {
"label": "//third_party/swiftshader/tests/GLESUnitTests:swiftshader_unittests",
"type": "console_test_launcher",
},
"symupload": {
"label": "//third_party/breakpad:symupload",
"type": "additional_compile_target",
},
"sync_integration_tests": {
"label": "//chrome/test:sync_integration_tests",
"type": "windowed_test_launcher",
},
"system_webview_apk": {
"label": "//android_webview:system_webview_apk",
"type": "additional_compile_target",
},
"system_webview_shell_apk": {
"label": "//android_webview/tools/system_webview_shell:system_webview_shell_apk",
"type": "additional_compile_target",
},
"system_webview_shell_layout_test_apk": {
"args": [
"--replace-system-package",
"org.chromium.webview_shell,apks/SystemWebViewShell.apk",
"--use-apk-under-test-flags-file",
],
"label": "//android_webview/tools/system_webview_shell:system_webview_shell_layout_test_apk",
"type": "console_test_launcher",
},
"system_webview_wpt": {
"label": "//android_webview/test:system_webview_wpt",
"type": "generated_script",
},
"telemetry_gpu_integration_test": {
"args": [
"../../content/test/gpu/run_gpu_integration_test.py",
],
"label": "//chrome/test:telemetry_gpu_integration_test",
"script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
"type": "script",
},
"telemetry_gpu_integration_test_scripts_only": {
"label": "//chrome/test:telemetry_gpu_integration_test_scripts_only",
"type": "additional_compile_target",
},
"telemetry_gpu_unittests": {
"args": [
"../../content/test/gpu/run_unittests.py",
"-v",
],
"label": "//chrome/test:telemetry_gpu_unittests",
"script": "//testing/scripts/run_telemetry_as_googletest.py",
"type": "script",
},
# This isolate is used by
# https://www.chromium.org/developers/cluster-telemetry
"ct_telemetry_perf_tests_without_chrome": {
"args": [
"../../tools/perf/run_benchmark",
],
"label": "//chrome/test:ct_telemetry_perf_tests_without_chrome",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"telemetry_perf_unittests": {
"args": [
"../../tools/perf/run_tests",
"-v",
],
"label": "//chrome/test:telemetry_perf_unittests",
"script": "//testing/scripts/run_telemetry_as_googletest.py",
"type": "script",
},
"telemetry_unittests": {
"args": [
"--xvfb",
"../../tools/perf/run_telemetry_tests",
"-v",
# TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
# Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
"--jobs=1",
"--chrome-root",
"../../",
],
"label": "//chrome/test:telemetry_unittests",
"script": "//testing/scripts/run_telemetry_as_googletest.py",
"type": "script",
},
"telemetry_weblayer_apks": {
"label": "//tools/perf/chrome_telemetry_build:telemetry_weblayer_apks",
"type": "additional_compile_target",
},
# TODO(crbug.com/1080749): Re-add this once the test is fixed and re-enabled.
# "test_buildbucket_api_gpu_use_cases": {
# "label": "//content/test:test_buildbucket_api_gpu_use_cases",
# "script": "//testing/scripts/test_buildbucket_api_gpu_use_cases.py",
# "type": "script",
# },
"touch_to_fill_junit_tests": {
"label": "//chrome/browser/touch_to_fill/android:touch_to_fill_junit_tests",
"type": "junit_test",
},
"trace_processor_shell": {
"label": "//third_party/perfetto/src/trace_processor:trace_processor_shell",
"type": "additional_compile_target",
},
"tracing_perftests": {
"args": [
"tracing_perftests",
"--non-telemetry=true",
"--test-launcher-print-test-stdio=always",
"--adb-path",
"src/third_party/android_sdk/public/platform-tools/adb",
],
"label": "//components/tracing:tracing_perftests",
"skip_usage_check": True, # Used by Pinpoint: crbug.com/1042778
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"traffic_annotation_auditor_unittests": {
"label": "//tools/traffic_annotation/auditor:traffic_annotation_auditor_unittests",
"type": "console_test_launcher",
},
"trichrome_chrome_bundle_smoke_test": {
"label": "//chrome/android:trichrome_chrome_bundle_smoke_test",
"type": "console_test_launcher",
},
"trichrome_chrome_bundle_fake_modules_smoke_test": {
"label": "//chrome/android:trichrome_chrome_bundle_fake_modules_smoke_test",
"type": "console_test_launcher",
},
"ui_android_unittests": {
"label": "//ui/android:ui_android_unittests",
"type": "console_test_launcher",
},
"ui_base_unittests": {
"label": "//ui/base:ui_base_unittests",
"type": "windowed_test_launcher",
},
"ui_chromeos_unittests": {
"label": "//ui/chromeos:ui_chromeos_unittests",
"type": "windowed_test_launcher",
},
"ui_junit_tests": {
"label": "//ui/android:ui_junit_tests",
"type": "junit_test",
},
"ui_touch_selection_unittests": {
"label": "//ui/touch_selection:ui_touch_selection_unittests",
"type": "windowed_test_launcher",
},
"unit_tests": {
"label": "//chrome/test:unit_tests",
"type": "windowed_test_launcher",
},
"updater_tests": {
"label": "//chrome/updater:updater_tests",
"type": "console_test_launcher",
},
"updater_tests_system": {
"label": "//chrome/updater:updater_tests_system",
"type": "console_test_launcher",
},
"upload_trace_processor": {
"label": "//tools/perf/core/perfetto_binary_roller:upload_trace_processor",
"type": "generated_script",
},
"url_unittests": {
"label": "//url:url_unittests",
"type": "console_test_launcher",
},
"usage_time_limit_unittests": {
"label": "//chrome/test:usage_time_limit_unittests",
"type": "console_test_launcher",
},
"vaapi_unittest": {
"label": "//media/gpu/vaapi:vaapi_unittest",
"type": "console_test_launcher",
},
"validate_expectations": {
"label": "//chrome/android:validate_expectations",
"type": "additional_compile_target",
},
"views_examples_unittests": {
"label": "//ui/views/examples:views_examples_unittests",
"type": "windowed_test_launcher",
},
"views_perftests": {
"args": [
"--xvfb",
"--non-telemetry=true",
"views_perftests",
],
"label": "//ui/views:views_perftests",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"views_unittests": {
"label": "//ui/views:views_unittests",
"type": "windowed_test_launcher",
},
"viz_unittests": {
"label": "//components/viz:viz_unittests",
"type": "windowed_test_launcher",
},
"vr_android_unittests": {
"label": "//chrome/browser/android/vr:vr_android_unittests",
"type": "console_test_launcher",
},
"vr_common_perftests": {
"args": [
"vr_common_perftests",
"--non-telemetry=true",
"--adb-path",
"src/third_party/android_sdk/public/platform-tools/adb",
],
"label": "//chrome/browser/vr:vr_common_perftests",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"vr_common_unittests": {
"label": "//chrome/browser/vr:vr_common_unittests",
"type": "console_test_launcher",
},
"vr_perf_tests": {
"args": [
"../../tools/perf/run_benchmark",
],
"label": "//tools/perf/contrib/vr_benchmarks:vr_perf_tests",
"script": "//testing/scripts/run_performance_tests.py",
"type": "script",
},
"vr_pixeltests": {
"label": "//chrome/browser/vr:vr_pixeltests",
"type": "console_test_launcher",
},
"vrcore_fps_test": {
"args": [
"-v",
],
"label": "//chrome/test/vr/perf:vrcore_fps_test",
"script": "//chrome/test/vr/perf/vrcore_fps/run_vrcore_fps_test.py",
"type": "script",
},
"vulkan_tests": {
"label": "//gpu/vulkan:vulkan_tests",
"type": "windowed_test_launcher",
},
"wayland_client_perftests": {
"label": "//components/exo/wayland:wayland_client_perftests",
"type": "windowed_test_launcher",
},
"wayland_client_tests": {
"label": "//components/exo/wayland:wayland_client_tests",
"type": "windowed_test_launcher",
},
"web_engine_browsertests": {
"label": "//fuchsia/engine:web_engine_browsertests",
"type": "console_test_launcher",
},
"web_engine_integration_tests": {
"label": "//fuchsia/engine:web_engine_integration_tests",
"type": "console_test_launcher",
},
"web_engine_shell_pkg": {
"label": "//fuchsia/engine:web_engine_shell_pkg",
"type": "additional_compile_target",
},
"web_engine_unittests": {
"label": "//fuchsia/engine:web_engine_unittests",
"type": "console_test_launcher",
},
"web_runner_integration_tests": {
"label": "//fuchsia/runners:web_runner_integration_tests",
"type": "console_test_launcher",
},
"web_runner_pkg": {
"label": "//fuchsia/runners:web_runner_pkg",
"type": "additonal_compile_target",
},
"webapk_client_junit_tests": {
"label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
"type": "junit_test",
},
"webapk_shell_apk_h2o_junit_tests": {
"label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_h2o_junit_tests",
"type": "junit_test",
},
"webapk_shell_apk_junit_tests": {
"label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
"type": "junit_test",
},
"webgpu_blink_web_tests": {
"label": "//:webgpu_blink_web_tests",
"type": "generated_script",
"args": [
"--results-directory",
"${ISOLATED_OUTDIR}",
],
},
"weblayer_browsertests": {
"label": "//weblayer/test:weblayer_browsertests",
"type": "windowed_test_launcher",
},
"weblayer_shell_wpt": {
"label": "//weblayer/shell/android:weblayer_shell_wpt",
"type": "generated_script",
},
"weblayer_unittests": {
"label": "//weblayer/test:weblayer_unittests",
"type": "windowed_test_launcher",
},
"webview_cts_tests": {
"args": [
"--skip-expected-failures",
"--use-webview-provider",
"apks/SystemWebView.apk",
"--apk-under-test",
"apks/SystemWebView.apk",
"--use-apk-under-test-flags-file",
"-v",
],
"label": "//android_webview/test:webview_cts_tests",
"script": "//android_webview/tools/run_cts.py",
"type": "script",
},
"webview_instrumentation_test_apk": {
"label": "//android_webview/test:webview_instrumentation_test_apk",
"type": "console_test_launcher",
},
"webview_ui_test_app_test_apk": {
"args": [
"--use-apk-under-test-flags-file",
],
"label": "//android_webview/tools/automated_ui_tests:webview_ui_test_app_test_apk",
"type": "console_test_launcher",
},
"weblayer_bundle_test": {
"label": "//weblayer/browser/android/javatests:weblayer_bundle_test",
"type": "console_test_launcher",
},
"weblayer_instrumentation_test_apk": {
"label": "//weblayer/browser/android/javatests:weblayer_instrumentation_test_apk",
"type": "console_test_launcher",
},
"weblayer_instrumentation_test_versions_apk": {
"args": [
"--replace-system-package",
"org.chromium.weblayer.shell,apks/WebLayerShellSystemWebView.apk"
],
"label": "//weblayer/browser/android/javatests:weblayer_instrumentation_test_versions_apk",
"type": "console_test_launcher",
},
"weblayer_instrumentation_test_versions_with_chrome_apk": {
"args": [
"--replace-system-package",
"org.chromium.weblayer.shell,apks/WebLayerShellSystemWebView.apk"
],
"label": "//weblayer/browser/android/javatests:weblayer_instrumentation_test_versions_with_chrome_apk",
"type": "console_test_launcher",
},
"weblayer_junit_tests": {
"label": "//weblayer/browser/java:weblayer_junit_tests",
"type": "junit_test",
},
"weblayer_private_instrumentation_test_apk": {
"label": "//weblayer/browser/android/javatests:weblayer_private_instrumentation_test_apk",
"type": "console_test_launcher",
},
"weblayer_shell": {
"label": "//weblayer/shell/android:run_weblayer_shell",
"type": "additional_compile_target",
},
"wm_unittests": {
"label": "//ui/wm:wm_unittests",
"type": "windowed_test_launcher",
},
"wtf_unittests": {
"label": "//third_party/blink/renderer/platform/wtf:wtf_unittests",
"type": "console_test_launcher",
},
"xr_browser_tests": {
"label": "//chrome/test:xr_browser_tests",
# We can't use the "script" type since we need to be run from the output
# directory (or at least given the path). Thus, we need to tell mb.py to not
# automatically append the .exe suffix on Windows.
"type": "windowed_test_launcher",
"executable": "run_xr_browser_tests.py",
"executable_suffix": "",
"args": [
'--enable-gpu',
'--test-launcher-bot-mode',
'--test-launcher-jobs=1',
'--enable-pixel-output-in-tests',
],
},
"x11_unittests": {
"label": "//ui/platform_window/x11:x11_unittests",
"type": "windowed_test_launcher",
},
"zlib_unittests": {
"label": "//third_party/zlib:zlib_unittests",
"type": "console_test_launcher",
},
"zucchini_unittests": {
"label": "//components/zucchini:zucchini_unittests",
"type": "console_test_launcher",
},
}