blob: f305fcf7515e05a1f38ed8bede3f27d0c7deb9c9 [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).
#
# 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 "brave-new-test-launcher"
# from //base/test:test_support and needs to run under Xvfb if run on
# some platforms (eg. Linux Desktop, X11 CrOS and Ozone CrOS).
# "console_test_launcher"
# : the test is a gtest-based test that uses the "brave-new-test-launcher"
# 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.
# "raw"
# : the test is a standalone executable; it may take an optional list of
# command line arguments in the "args" field, but otherwise needs no
# extra files or special handling.
# "script"
# : the test is a python script; the path to the script is specified in
# the "script" field.
# "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 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".
{
"All": {
"label": "//:All",
"type": "additional_compile_target",
},
"All_syzygy": {
"label": "//:All_syzygy",
"type": "additional_compile_target",
},
"accessibility_unittests": {
"label": "//ui/accessibility:accessibility_unittests",
"type": "raw",
"args": [],
},
"android_webview_unittests": {
"label": "//android_webview/test:android_webview_unittests",
"type": "console_test_launcher",
},
"angle_deqp_egl_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
"type": "raw",
"args": [],
},
"angle_deqp_gles2_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles2_tests",
"type": "raw",
"args": [],
},
"angle_deqp_gles3_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles3_tests",
"type": "raw",
"args": [],
},
"angle_deqp_gles31_tests": {
"label": "//third_party/angle/src/tests:angle_deqp_gles31_tests",
"type": "raw",
"args": [],
},
"angle_end2end_tests": {
"label": "//third_party/angle/src/tests:angle_end2end_tests",
"type": "raw",
"args": [],
},
"angle_white_box_tests": {
"label": "//third_party/angle/src/tests:angle_white_box_tests",
"type": "raw",
"args": [],
},
"angle_unittests": {
"label": "//third_party/angle/src/tests:angle_unittests",
"type": "raw",
"args": [],
},
"app_list_unittests": {
"label": "//ui/app_list:app_list_unittests",
"type": "windowed_test_launcher",
},
"app_list_presenter_unittests": {
"label": "//ui/app_list/presenter:app_list_presenter_unittests",
"type": "windowed_test_launcher",
},
"app_shell_unittests": {
"label": "//extensions/shell:app_shell_unittests",
"type": "windowed_test_launcher",
},
"ash_content_unittests": {
"label": "//ash:ash_content_unittests",
"type": "windowed_test_launcher",
},
"ash_unittests": {
"label": "//ash:ash_unittests",
"type": "windowed_test_launcher",
},
"audio_unittests": {
"label": "//media:audio_unittests",
"type": "raw",
"args": [],
},
"aura_unittests": {
"label": "//ui/aura:aura_unittests",
"type": "windowed_test_launcher",
},
"motopho_latency_test": {
"label": "//chrome/test/vr/perf:motopho_latency_test",
"type": "script",
"script": "//chrome/test/vr/perf/latency/run_latency_test.py",
"args": [
"--output-dir=${ISOLATED_OUTDIR}",
"-v",
],
},
"base_junit_tests": {
"label": "//base:base_junit_tests",
"type": "junit_test",
},
"base_unittests": {
"label": "//base:base_unittests",
"type": "console_test_launcher",
},
"battor_agent_unittests": {
"label": "//tools/battor_agent:battor_agent_unittests",
"type": "console_test_launcher",
},
"blink_heap_unittests": {
"label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
"type": "console_test_launcher",
},
"blink_platform_unittests": {
"label": "//third_party/WebKit/Source/platform:blink_platform_unittests",
"type": "console_test_launcher",
},
"blink_tests": {
"label": "//:blink_tests",
"type": "additional_compile_target",
},
"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": "//breakpad:breakpad_unittests",
"type": "console_test_launcher",
},
"browser_tests": {
"label": "//chrome/test:browser_tests",
"type": "windowed_test_launcher",
},
"cacheinvalidation_unittests": {
"label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
"type": "raw",
"args": [
"--test-launcher-bot-mode",
],
},
"capture_unittests": {
"label": "//media/capture:capture_unittests",
"type": "windowed_test_launcher",
},
"cast_alsa_cma_backend_unittests": {
"label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests",
"type": "console_test_launcher",
},
"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_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_unittests": {
"label": "//chromecast:cast_shell_unittests",
"type": "console_test_launcher",
},
"cast_unittests": {
"label": "//media/cast:cast_unittests",
"type": "windowed_test_launcher",
},
"cc_unittests": {
"label": "//cc:cc_unittests",
"type": "windowed_test_launcher",
},
"chrome": {
"label": "//chrome:chrome",
"type": "additional_compile_target",
},
"chrome_app_unittests": {
"label": "//chrome/test:chrome_app_unittests",
"type": "console_test_launcher",
},
"chrome_elf_unittests": {
"label": "//chrome_elf:chrome_elf_unittests",
"type": "raw",
},
"chrome_junit_tests": {
"label": "//chrome/android:chrome_junit_tests",
"type": "junit_test",
},
"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_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_sync_shell_test_apk": {
"label": "//chrome/android:chrome_sync_shell_test_apk",
"type": "console_test_launcher",
},
"chromedriver_unittests": {
"label": "//chrome/test/chromedriver:chromedriver_unittests",
"type": "windowed_test_launcher",
},
"chromeos_unittests": {
"label": "//chromeos:chromeos_unittests",
"type": "console_test_launcher",
},
"chromeos_components_unittests": {
"label": "//chromeos/components:chromeos_components_unittests",
"type": "console_test_launcher",
},
"chromevox_tests": {
"label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests",
"type": "windowed_test_launcher",
},
"chromium_builder_asan": {
"label": "//:chromium_builder_asan",
"type": "additional_compile_target",
},
"chromium_builder_perf": {
"label": "//:chromium_builder_perf",
"type": "additional_compile_target",
},
"chromium_builder_tests": {
"label": "//:chromium_builder_tests",
"type": "additional_compile_target",
},
"chromium_swarm_tests": {
"label": "//:chromium_swarm_tests",
"type": "additional_compile_target",
},
"chromiumos_preflight": {
"label": "//:chromiumos_preflight",
"type": "additional_compile_target",
},
"components_background_task_scheduler_junit_tests": {
"label": "//components/background_task_scheduler:components_background_task_scheduler_junit_tests",
"type": "junit_test",
},
"components_browsertests": {
"label": "//components:components_browsertests",
"type": "windowed_test_launcher",
},
"components_gcm_driver_junit_tests": {
"label": "//components/gcm_driver/android:components_gcm_driver_junit_tests",
"type": "junit_test",
},
"components_invalidation_impl_junit_tests": {
"label": "//components/invalidation/impl:components_invalidation_impl_junit_tests",
"type": "junit_test",
},
"components_policy_junit_tests": {
"label": "//components/policy/android:components_policy_junit_tests",
"type": "junit_test",
},
"components_unittests": {
"label": "//components:components_unittests",
"type": "windowed_test_launcher",
},
"components_variations_junit_tests": {
"label": "//components/variations/android:components_variations_junit_tests",
"type": "junit_test",
},
"components_web_restrictions_junit_tests": {
"label": "//components/web_restrictions:components_web_restrictions_junit_tests",
"type": "junit_test",
},
"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_shell_crash_test": {
"label": "//content/shell:content_shell_crash_test",
"type": "script",
"script": "//testing/scripts/content_shell_crash_test.py",
},
"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",
},
"cronet_package": {
"label": "//components/cronet/android:cronet_package",
"type": "additional_compile_target",
},
"cronet_test": {
"label": "//components/cronet/ios/test:cronet_test",
"type": "raw",
},
"cronet_test_instrumentation_apk": {
"label": "//components/cronet/android:cronet_test_instrumentation_apk",
"type": "additional_compile_target",
},
"crypto_unittests": {
"label": "//crypto:crypto_unittests",
"type": "console_test_launcher",
},
"d8": {
"label": "//v8:d8",
"type": "additional_compile_target",
},
"dbus_unittests": {
"label": "//dbus:dbus_unittests",
"type": "windowed_test_launcher",
},
"device_junit_tests": {
"label": "//device:device_junit_tests",
"type": "junit_test",
},
"device_unittests": {
"label": "//device:device_unittests",
"type": "console_test_launcher",
},
"devtools_closure_compile": {
"label": "//third_party/WebKit/Source/devtools:devtools_closure_compile",
"type": "script",
"script": "//testing/scripts/run_devtools_check.py",
"args": [
"../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py",
],
},
"devtools_eslint": {
"label": "//third_party/WebKit/Source/devtools:devtools_eslint",
"type": "script",
"script": "//testing/scripts/run_devtools_check.py",
"args": [
"../../third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py",
],
},
"display_unittests": {
"label": "//ui/display:display_unittests",
"type": "console_test_launcher",
},
"dump_syms" : {
"label": "//breakpad:dump_syms",
"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/filesystem:filesystem_service_unittests",
"type": "console_test_launcher",
},
"gcm_unit_tests": {
"label": "//google_apis/gcm:gcm_unit_tests",
"type": "console_test_launcher",
},
"gfx_unittests": {
"label": "//ui/gfx:gfx_unittests",
"type": "raw",
"args": [],
},
"gin_unittests": {
"label": "//gin:gin_unittests",
"type": "console_test_launcher",
},
"gles2_conform_test": {
"label": "//gpu/gles2_conform_support:gles2_conform_test",
"type": "console_test_launcher",
},
"gl_tests": {
"label": "//gpu:gl_tests",
"type": "raw",
"args": [],
},
"gl_unittests": {
"label": "//ui/gl:gl_unittests",
"type": "raw",
"args": [],
},
"gl_unittests_ozone": {
"label": "//ui/gl:gl_unittests_ozone",
"label_type": "group",
"type": "windowed_test_launcher",
"executable": "gl_unittests",
},
"gn_unittests": {
"label": "//tools/gn:gn_unittests",
"type": "raw",
"args": [],
},
"google_apis_unittests": {
"label": "//google_apis:google_apis_unittests",
"type": "console_test_launcher",
},
"gpu_ipc_service_unittests": {
"label": "//gpu/ipc/service:gpu_ipc_service_unittests",
"type": "windowed_test_launcher",
},
"gpu_unittests": {
"label": "//gpu:gpu_unittests",
"type": "windowed_test_launcher",
},
"headless_lib": {
"label": "//headless:headless_lib",
"type": "additional_compile_target",
},
"headless_browsertests": {
"label": "//headless:headless_browsertests",
"type": "console_test_launcher",
},
"headless_shell": {
"label": "//headless:headless_shell",
"type": "additional_compile_target",
},
"headless_tests": {
"label": "//headless:headless_tests",
"type": "additional_compile_target",
},
"headless_unittests": {
"label": "//headless:headless_unittests",
"type": "console_test_launcher",
},
"installer_util_unittests": {
"label": "//chrome/installer/util:installer_util_unittests",
"type": "console_test_launcher",
},
"install_static_unittests": {
"label": "//chrome/install_static:install_static_unittests",
"type": "console_test_launcher",
},
"interactive_ui_tests": {
"label": "//chrome/test:interactive_ui_tests",
"type": "windowed_test_launcher",
},
"ios_chrome_integration_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_integration_egtests",
"type": "raw",
"args": [],
},
"ios_chrome_reading_list_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_reading_list_egtests",
"type": "raw",
"args": [],
},
"ios_chrome_settings_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_settings_egtests",
"type": "raw",
"args": [],
},
"ios_chrome_smoke_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_smoke_egtests",
"type": "raw",
"args": [],
},
"ios_chrome_ui_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_ui_egtests",
"type": "raw",
"args": [],
},
"ios_chrome_unittests": {
"label": "//ios/chrome/test:ios_chrome_unittests",
"type": "raw",
"args": [],
},
"ios_chrome_web_egtests": {
"label": "//ios/chrome/test/earl_grey:ios_chrome_web_egtests",
"type": "raw",
"args": [],
},
"ios_net_unittests": {
"label": "//ios/net:ios_net_unittests",
"type": "raw",
"args": [],
},
"ios_showcase_egtests": {
"label": "//ios/showcase:ios_showcase_egtests",
"type": "raw",
"args": [],
},
"ios_web_inttests": {
"label": "//ios/web:ios_web_inttests",
"type": "raw",
"args": [],
},
"ios_web_shell_egtests": {
"label": "//ios/web/shell/test:ios_web_shell_egtests",
"type": "raw",
"args": [],
},
"ios_web_unittests": {
"label": "//ios/web:ios_web_unittests",
"type": "raw",
"args": [],
},
"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_unittests": {
"label": "//ui/keyboard:keyboard_unittests",
"type": "console_test_launcher",
},
"latency_unittests": {
"label": "//ui/latency:latency_unittests",
"type": "console_test_launcher",
},
"leveldb_service_unittests": {
"label": "//components/leveldb:leveldb_service_unittests",
"type": "console_test_launcher",
},
# See http://crbug.com/585151
"libaddressinput_unittests": {
"label": "//third_party/libaddressinput:libaddressinput_unittests",
"type": "console_test_launcher",
},
"libjingle_xmpp_unittests": {
"label": "//third_party/libjingle_xmpp:libjingle_xmpp_unittests",
"type": "console_test_launcher",
},
# See http://crbug.com/585151
"libphonenumber_unittests": {
"label": "//third_party/libphonenumber:libphonenumber_unittests",
"type": "console_test_launcher",
},
"mac_installer_unittests": {
"label": "//chrome/installer/mac/app:mac_installer_unittests",
"type": "console_test_launcher",
},
"mash:all" : {
"label": "//mash:all",
"type": "additional_compile_target",
},
"mash_browser_tests": {
"label": "//chrome/test:mash_browser_tests",
"label_type": "group",
"type": "windowed_test_launcher",
"executable": "browser_tests",
"args": [
"--run-in-mash",
],
},
"media_unittests": {
"label": "//media:media_unittests",
"type": "windowed_test_launcher",
},
"media_service_unittests": {
"label": "//media/mojo/services:media_service_unittests",
"type": "console_test_launcher",
},
"media_blink_unittests": {
"label": "//media/blink:media_blink_unittests",
"type": "windowed_test_launcher",
},
"media_router_perf_tests": {
"label": "//chrome/test/media_router:media_router_perf_tests",
"type": "script",
"script": "//chrome/test/media_router/telemetry/run_benchmark.py",
"args": [
"--browser=release",
"--also-run-disabled-tests",
"-v",
"--use-live-sites",
"--output-format=chartjson",
"--output-dir=${ISOLATED_OUTDIR}",
],
},
"media_router_tests": {
"label": "//chrome/test/media_router:media_router_tests",
"type": "script",
"script": "//chrome/test/media_router/internal/media_router_tests.py",
"args": [
"--extension",
"mr_extension/",
"--test_binary",
"./browser_tests",
],
},
"microdump_stackwalk" : {
"label": "//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",
},
"mojo_common_unittests": {
"label": "//mojo/common:mojo_common_unittests",
"type": "console_test_launcher",
},
"mojo_js_integration_tests": {
"label": "//mojo/edk/js/tests:mojo_js_integration_tests",
"type": "console_test_launcher",
},
"mojo_js_unittests": {
"label": "//mojo/edk/js/tests:mojo_js_unittests",
"type": "console_test_launcher",
},
"mojo_public_bindings_unittests": {
"label": "//mojo/edk/test:mojo_public_bindings_unittests",
"type": "console_test_launcher",
},
"mojo_public_system_unittests": {
"label": "//mojo/edk/test:mojo_public_system_unittests",
"type": "console_test_launcher",
},
"mojo_system_unittests": {
"label": "//mojo/edk/system:mojo_system_unittests",
"type": "console_test_launcher",
},
"mojo_test_apk": {
"label": "//mojo/android:mojo_test_apk",
"type": "console_test_launcher",
},
"mus_browser_tests": {
"label": "//chrome/test:mus_browser_tests",
"label_type": "group",
"type": "windowed_test_launcher",
"executable": "browser_tests",
"args": [
"--run-in-mus",
"--service-overrides=../../chrome/app/mash/mash_service_overrides.json",
],
},
"message_center_unittests": {
"label": "//ui/message_center:message_center_unittests",
"type": "windowed_test_launcher",
},
"mash_unittests": {
"label": "//mash:mash_unittests",
"type": "windowed_test_launcher",
},
"nacl_helper_nonsfi_unittests": {
"label": "//components/nacl/loader:nacl_helper_nonsfi_unittests",
"type": "raw",
"args": [],
},
"nacl_loader_unittests": {
"label": "//components/nacl/loader:nacl_loader_unittests",
"type": "raw",
"args": [],
},
"net_junit_tests": {
"label": "//net/android:net_junit_tests",
"type": "junit_test",
},
"net_perftests": {
"label": "//net:net_perftests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"net_perftests",
],
},
"net_unittests": {
"label": "//net:net_unittests",
"type": "console_test_launcher",
},
"next_version_mini_installer": {
"label": "//chrome/installer/mini_installer:next_version_mini_installer",
"type": "additional_compile_target",
},
"ozone_unittests": {
"label": "//ui/ozone:ozone_unittests",
"type": "console_test_launcher",
},
"ozone_gl_unittests": {
"label": "//ui/ozone/gl:ozone_gl_unittests",
"type": "console_test_launcher",
},
"pdf_unittests": {
"label": "//pdf:pdf_unittests",
"type": "console_test_launcher",
},
"pdfium_test": {
"label": "//third_party/pdfium/samples:pdfium_test",
"type": "additional_compile_target",
},
"postmortem-metadata": {
"label": "//v8:postmortem-metadata",
"type": "additional_compile_target",
},
"ppapi_unittests": {
"label": "//ppapi:ppapi_unittests",
"type": "console_test_launcher",
},
"printing_unittests": {
"label": "//printing:printing_unittests",
"type": "console_test_launcher",
},
"remoting_unittests": {
"label": "//remoting:remoting_unittests",
"type": "console_test_launcher",
},
"sandbox_linux_unittests": {
"label": "//sandbox/linux:sandbox_linux_unittests",
"type": "raw",
"args": [],
},
"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",
},
"service_manager_unittests": {
"label": "//services/service_manager/tests:service_manager_unittests",
"type": "console_test_launcher",
},
"service_junit_tests": {
"label": "//services:service_junit_tests",
"type": "junit_test",
},
"services_unittests": {
"label": "//services:services_unittests",
"type": "windowed_test_launcher",
},
"setup_unittests": {
"label": "//chrome/installer/setup:setup_unittests",
"type": "console_test_launcher",
},
"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/unittests:swiftshader_unittests",
"type": "raw",
"args": [],
},
"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",
},
"telemetry_gpu_integration_test": {
"label": "//chrome/test:telemetry_gpu_integration_test",
"type": "script",
"script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
"args": [
"../../content/test/gpu/run_gpu_integration_test.py",
],
},
"telemetry_gpu_unittests": {
"label": "//chrome/test:telemetry_gpu_unittests",
"type": "script",
"script": "//testing/scripts/run_telemetry_as_googletest.py",
"args": [
"../../content/test/gpu/run_unittests.py",
"-v",
],
},
"telemetry_perf_unittests": {
"label": "//chrome/test:telemetry_perf_unittests",
"type": "script",
"script": "//testing/scripts/run_telemetry_as_googletest.py",
"args": [
"../../tools/perf/run_tests",
"-v",
],
},
"telemetry_perf_tests": {
"label": "//chrome/test:telemetry_perf_tests",
"type": "script",
"script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
"args": [
"../../tools/perf/run_benchmark",
],
},
"telemetry_perf_webview_tests": {
"label": "//chrome/test:telemetry_perf_webview_tests",
"type": "script",
"script": "//third_party/catapult/devil/devil/android/tools/system_app.py",
"args": [
"remove",
"--package",
"com.android.webview",
"com.google.android.webview",
"-v",
"--",
"../../testing/scripts/run_telemetry_benchmark_as_googletest.py",
"../../tools/perf/run_benchmark",
],
},
"telemetry_unittests": {
"label": "//chrome/test:telemetry_unittests",
"type": "script",
"script": "//testing/scripts/run_telemetry_as_googletest.py",
"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",
"../../",
],
},
"cc_perftests": {
"label": "//cc:cc_perftests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"cc_perftests",
"--adb-path",
"src/third_party/android_tools/sdk/platform-tools/adb"
],
},
"media_perftests": {
"label": "//media:media_perftests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"media_perftests",
],
},
"load_library_perf_tests": {
"label": "//chrome/test:load_library_perf_tests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"load_library_perf_tests",
"--test-launcher-print-test-stdio=always"
],
},
"tracing_perftests": {
"label": "//components/tracing:tracing_perftests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"tracing_perftests",
"--test-launcher-print-test-stdio=always",
"--adb-path",
"src/third_party/android_tools/sdk/platform-tools/adb",
],
},
"gpu_perftests": {
"label": "//gpu:gpu_perftests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"gpu_perftests",
"--adb-path",
"src/third_party/android_tools/sdk/platform-tools/adb",
],
},
"angle_perftests": {
"label": "//chrome/test:angle_perftests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"angle_perftests",
"--test-launcher-print-test-stdio=always",
"--test-launcher-jobs=1"
],
},
"performance_browser_tests": {
"label": "//chrome/test:performance_browser_tests",
"type": "script",
"script": "//testing/scripts/run_gtest_perf_test.py",
"args": [
"performance_browser_tests",
"--test-launcher-print-test-stdio=always",
"--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
"--test-launcher-jobs=1",
"--enable-gpu"
],
},
"native_theme_unittests": {
"label": "//ui/native_theme:native_theme_unittests",
"type": "windowed_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_arc_unittests": {
"label": "//ui/arc:ui_arc_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",
},
"url_unittests": {
"label": "//url:url_unittests",
"type": "console_test_launcher",
},
"video_decode_accelerator_unittest": {
"label": "//media/gpu:video_decode_accelerator_unittest",
"type": "raw",
"args": [],
},
"views_mus_interactive_ui_tests": {
"label": "//ui/views/mus:views_mus_interactive_ui_tests",
"type": "windowed_test_launcher",
},
"views_mus_unittests": {
"label": "//ui/views/mus:views_mus_unittests",
"type": "windowed_test_launcher",
},
"views_unittests": {
"label": "//ui/views:views_unittests",
"type": "windowed_test_launcher",
},
"vr_common_unittests": {
"label": "//chrome/browser/android/vr_shell:vr_common_unittests",
"type": "console_test_launcher",
},
"webapk_client_junit_tests": {
"label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
"type": "junit_test",
},
"webapk_shell_apk_junit_tests": {
"label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
"type": "junit_test",
},
"webkit_layout_tests": {
"label": "//:webkit_layout_tests",
"type": "script",
"script": "//testing/scripts/run_isolated_script_test.py",
"args": [
"--xvfb",
"../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
"--clobber-old-results",
"--debug-rwt-logging",
"--no-show-results",
"--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
],
},
"webkit_layout_tests_exparchive": {
"label": "//:webkit_layout_tests_exparchive",
"type": "script",
"script": "//testing/scripts/run_isolated_script_test.py",
"args": [
"--xvfb",
"../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
"--seed", "4",
"--no-show-results",
"--full-results-html",
"--clobber-old-results",
"--exit-after-n-failures", "5000",
"--exit-after-n-crashes-or-timeouts", "100",
"--debug-rwt-logging",
"--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
],
},
"webkit_unit_tests": {
"label": "//third_party/WebKit/Source/web:webkit_unit_tests",
"type": "console_test_launcher",
},
"webview_instrumentation_test_apk": {
"label": "//android_webview/test:webview_instrumentation_test_apk",
"type": "console_test_launcher",
},
"wm_unittests": {
"label": "//ui/wm:wm_unittests",
"type": "windowed_test_launcher",
},
"wtf_unittests": {
"label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
"type": "console_test_launcher",
},
}