Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Unified Diff: testing/buildbot/gn_isolate_map.pyl

Issue 1206033005: Rework how isolates are generated in MB. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up osmesa, add comments about ui_test_pak Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/buildbot/chromium.linux.json ('k') | testing/buildbot/manage.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/buildbot/gn_isolate_map.pyl
diff --git a/testing/buildbot/gn_isolate_map.pyl b/testing/buildbot/gn_isolate_map.pyl
new file mode 100644
index 0000000000000000000000000000000000000000..748865951c9bc4a6bf1a3d377194c7cdf2a4862b
--- /dev/null
+++ b/testing/buildbot/gn_isolate_map.pyl
@@ -0,0 +1,380 @@
+# 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.
+
+# 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 '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
+# an X11-based platform (use_x11=true).
+# "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.
+# "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.
+# "unknown"
+# : (the default), which indicates that we don't know what the command line
+# needs to be (this is a fatal error).
+
+{
+ "accessibility_unittests": {
+ "label": "//ui/accessibility:accessibility_unittests",
+ "type": "unknown",
+ },
+ "angle_unittests": {
+ "label": "//gpu:angle_unittests",
+ "type": "unknown",
+ },
+ "app_list_unittests": {
+ "label": "//ui/app_list:app_list_unittests",
+ "type": "unknown",
+ },
+ "app_shell_unittests": {
+ "label": "//extensions/shell:app_shell_unittests",
+ "type": "unknown",
+ },
+ "ash_unittests": {
+ "label": "//ash:ash_unittests",
+ "type": "unknown",
+ },
+ "aura_unittests": {
+ "label": "//ui/aura:aura_unittests",
+ "type": "unknown",
+ },
+ "base_unittests": {
+ "label": "//base:base_unittests",
+ "type": "console_test_launcher",
+ },
+ "blink_heap_unittests": {
+ "label": "//third_party/WebKit/public:blink_heap_unittests",
+ "type": "unknown",
+ },
+ "blink_platform_unittests": {
+ "label": "//third_party/WebKit/public:blink_platform_unittests",
+ "type": "unknown",
+ },
+ "browser_tests": {
+ "label": "//chrome/test:browser_tests",
+ "type": "unknown",
+ },
+ "cacheinvalidation_unittests": {
+ "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests",
+ "type": "raw",
+ "args": [
+ "--test-launcher-bot-mode",
+ ],
+ },
+ "cast_base_unittests": {
+ "label": "//cast:cast_base_unittests",
+ "type": "unknown",
+ },
+ "cast_crash_unittests": {
+ "label": "//chromecast/crash:cast_crash_unittests",
+ "type": "unknown",
+ },
+ "cast_shell_unittests": {
+ "label": "//chromecast/app:cast_shell_unittests",
+ "type": "unknown",
+ },
+ "cast_unittests": {
+ "label": "//cast:cast_unittests",
+ "type": "unknown",
+ },
+ "cc_unittests": {
+ "label": "//cc:cc_unittests",
+ "type": "unknown",
+ },
+ "chrome_elf_unittests": {
+ "label": "//chrome_elf:chrome_elf_unittests",
+ "type": "unknown",
+ },
+ "chromedriver_unittests": {
+ "label": "//chrome/test/chromedriver:chromedriver_unittests",
+ "type": "unknown",
+ },
+ "chromeos_unittests": {
+ "label": "//chromeos:chromeos_unittests",
+ "type": "unknown",
+ },
+ "components_browsertests": {
+ "label": "//components:components_browsertests",
+ "type": "unknown",
+ },
+ "components_unittests": {
+ "label": "//components:components_unittests",
+ "type": "unknown",
+ },
+ "compositor_unittests": {
+ "label": "//ui/compositor:compositor_unittests",
+ "type": "unknown",
+ },
+ "content_browsertests": {
+ "label": "//content/test:content_browsertests",
+ "type": "unknown",
+ },
+ "content_unittests": {
+ "label": "//content/test:content_unittests",
+ "type": "unknown",
+ },
+ "courgette_unittests": {
+ "label": "//courgette:courgette_unittests",
+ "type": "unknown",
+ },
+ "crypto_unittests": {
+ "label": "//crypto:crypto_unittests",
+ "type": "unknown",
+ },
+ "dbus_unittests": {
+ "label": "//dbus:dbus_unittests",
+ "type": "unknown",
+ },
+ "device_unittests": {
+ "label": "//device:device_unittests",
+ "type": "unknown",
+ },
+ "display_unittests": {
+ "label": "//ui/display:display_unittests",
+ "type": "unknown",
+ },
+ "events_unittests": {
+ "label": "//ui/events:events_unittests",
+ "type": "unknown",
+ },
+ "extensions_browsertests": {
+ "label": "//extensions:extensions_browsertests",
+ "type": "unknown",
+ },
+ "extensions_unittests": {
+ "label": "//extensions:extensions_unittests",
+ "type": "unknown",
+ },
+ "gcm_unit_tests": {
+ "label": "//google_apis/gcm:gcm_unit_tests",
+ "type": "unknown",
+ },
+ "gfx_unittests": {
+ "label": "//ui/gfx:gfx_unittests",
+ "type": "unknown",
+ },
+ "gl_unittests": {
+ "label": "//ui/gl:gl_unittests",
+ "type": "unknown",
+ },
+ "gn_unittests": {
+ "label": "//tools/gn:gn_unittests",
+ "type": "unknown",
+ },
+ "google_apis_unittests": {
+ "label": "//google_apis:google_apis_unittests",
+ "type": "unknown",
+ },
+ "gpu_unittests": {
+ "label": "//gpu:gpu_unittests",
+ "type": "unknown",
+ },
+ "html_viewer_unittests": {
+ "label": "//components/html_viewer:html_viewer_unittests",
+ "type": "unknown",
+ },
+ "installer_util_unittests": {
+ "label": "//chrome/installer/util:installer_util_unittests",
+ "type": "unknown",
+ },
+ "interactive_ui_tests": {
+ "label": "//chrome/test:interactive_ui_tests",
+ "type": "unknown",
+ },
+ "ipc_mojo_unittests": {
+ "label": "//ipc/mojo:ipc_mojo_unittests",
+ "type": "unknown",
+ },
+ "ipc_tests": {
+ "label": "//ipc:ipc_tests",
+ "type": "unknown",
+ },
+ "jingle_unittests": {
+ "label": "//jingle:jingle_unittests",
+ "type": "unknown",
+ },
+ "keyboard_unittests": {
+ "label": "//ui/keyboard:keyboard_unittests",
+ "type": "unknown",
+ },
+ "media_unittests": {
+ "label": "//media:media_unittests",
+ "type": "unknown",
+ },
+ "midi_unittests": {
+ "label": "//media:midi_unittests",
+ "type": "unknown",
+ },
+ "mojo_common_unittests": {
+ "label": "//mojo/common:mojo_common_unittests",
+ "type": "unknown",
+ },
+ "mojo_public_application_unittests": {
+ "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_applicaiton_unittests",
+ "type": "unknown",
+ },
+ "mojo_public_bindings_unittests": {
+ "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
+ "type": "unknown",
+ },
+ "mojo_public_environment_unittests": {
+ "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
+ "type": "unknown",
+ },
+ "mojo_public_system_unittests": {
+ "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
+ "type": "unknown",
+ },
+ "mojo_public_utility_unittests": {
+ "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
+ "type": "unknown",
+ },
+ "mojo_runner_unittests": {
+ "label": "//mojo/runner:mojo_runner_unittests",
+ "type": "unknown",
+ },
+ "mojo_shell_unittests": {
+ "label": "//mojo/shell:mojo_shell_unittests",
+ "type": "unknown",
+ },
+ "mojo_surfaces_lib_unittests": {
+ "label": "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests",
+ "type": "unknown",
+ },
+ "mojo_system_unittests": {
+ "label": "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
+ "type": "unknown",
+ },
+ "mojo_view_manager_lib_unittests": {
+ "label": "//components/view_manager/public/cpp/tests:mojo_view_manager_lib_unittests",
+ "type": "unknown",
+ },
+ "message_center_unittests": {
+ "label": "//ui/message_center:message_center_unittests",
+ "type": "unknown",
+ },
+ "nacl_loader_unittests": {
+ "label": "//components/nacl:nacl_loader_unittests",
+ "type": "unknown",
+ },
+ "net_unittests": {
+ "label": "//net:net_unittests",
+ "type": "unknown",
+ },
+ "ozone_unittests": {
+ "label": "//ui/ozone:ozone_unittests",
+ "type": "unknown",
+ },
+ "ppapi_unittests": {
+ "label": "//ppapi:ppapi_unittests",
+ "type": "unknown",
+ },
+ "printing_unittests": {
+ "label": "//printing:printing_unittests",
+ "type": "unknown",
+ },
+ "remoting_unittests": {
+ "label": "//remoting:remoting_unittests",
+ "type": "unknown",
+ },
+ "resource_provider_unittests": {
+ "label": "//components/resource_provider:resource_provider_unittests",
+ "type": "unknown",
+ },
+ "sandbox_linux_unittests": {
+ "label": "//sandbox/linux:sandbox_linux_unittests",
+ "type": "unknown",
+ },
+ "sandbox_mac_unittests": {
+ "label": "//sandbox/mac:sandbox_mac_unittests",
+ "type": "unknown",
+ },
+ "sbox_integration_tests": {
+ "label": "//sandbox/win:sbox_integration_tests",
+ "type": "unknown",
+ },
+ "sbox_unittests": {
+ "label": "//sandbox/win:sbox_unittests",
+ "type": "unknown",
+ },
+ "sbox_validation_tests": {
+ "label": "//sandbox/win:sbox_validation_tests",
+ "type": "unknown",
+ },
+ "setup_unittests": {
+ "label": "//chrome/installer/setup:setup_unittests",
+ "type": "unknown",
+ },
+ "skia_unittests": {
+ "label": "//skia:skia_unittests",
+ "type": "unknown",
+ },
+ "sql_unittests": {
+ "label": "//sql:sql_unittests",
+ "type": "unknown",
+ },
+ "sync_integration_tests": {
+ "label": "//sync:sync_integration_tests",
+ "type": "unknown",
+ },
+ "sync_unit_tests": {
+ "label": "//sync:sync_unit_tests",
+ "type": "unknown",
+ },
+ "ui_base_unittests": {
+ "label": "//ui/base:ui_base_unittests",
+ "type": "windowed_test_launcher",
+ },
+ "ui_chromeos_unittests": {
+ "label": "//ui/chromeos:ui_chromeos_unittests",
+ "type": "unknown",
+ },
+ "ui_touch_selection_unittests": {
+ "label": "//ui/touch_selection:ui_touch_selection_unittests",
+ "type": "unknown",
+ },
+ "unit_tests": {
+ "label": "//chrome/test:unit_tests",
+ "type": "unknown",
+ },
+ "url_unittests": {
+ "label": "//url:url_unittests",
+ "type": "unknown",
+ },
+ "view_manager_unittests": {
+ "label": "//components/view_manager:view_manager_unittests",
+ "type": "unknown",
+ },
+ "views_unittests": {
+ "label": "//ui/views:views_unittests",
+ "type": "unknown",
+ },
+ "webkit_unit_tests": {
+ "label": "//third_party/WebKit/public:webkit_unit_tests",
+ "type": "unknown",
+ },
+ "wm_unittests": {
+ "label": "//ui/wm:wm_unittests",
+ "type": "unknown",
+ },
+ "wtf_unittests": {
+ "label": "//third_party/WebKit/public:wtf_unittests",
+ "type": "unknown",
+ },
+}
« no previous file with comments | « testing/buildbot/chromium.linux.json ('k') | testing/buildbot/manage.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698