dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 1 | # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and |
| 6 | # test type classifications for the tests that are run on the bots. |
| 7 | # |
| 8 | # This mapping is used by MB so that we can uniformly refer to test binaries |
| 9 | # by their Ninja target names in the recipes and not need to worry about how |
| 10 | # they are referred to in GN or GYP specifically (the GYP target name is pretty |
| 11 | # much always the same as the Ninja target name, since GYP target names are not |
| 12 | # hierarchical). |
| 13 | # |
| 14 | # The 'type' field is used to determine what the command line for the test |
| 15 | # needs to be; valid values are: |
| 16 | # |
| 17 | # "windowed_test_launcher" |
| 18 | # : the test is a gtest-based test that uses the 'brave-new-test-launcher' |
| 19 | # from //base/test:test_support and needs to run under Xvfb if run on |
| 20 | # an X11-based platform (use_x11=true). |
| 21 | # "console_test_launcher" |
| 22 | # : the test is a gtest-based test that uses the 'brave-new-test-launcher' |
| 23 | # from //base/test:test_support but does not need Xvfb. |
| 24 | # "raw" |
| 25 | # : the test is a standalone executable; it may take an optional list of |
| 26 | # command line arguments in the 'args' field, but otherwise needs no |
| 27 | # extra files or special handling. |
| 28 | # "unknown" |
| 29 | # : (the default), which indicates that we don't know what the command line |
| 30 | # needs to be (this is a fatal error). |
| 31 | |
| 32 | { |
| 33 | "accessibility_unittests": { |
| 34 | "label": "//ui/accessibility:accessibility_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 35 | "type": "raw", |
| 36 | "args": [], |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 37 | }, |
| 38 | "angle_unittests": { |
| 39 | "label": "//gpu:angle_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 40 | "type": "raw", |
| 41 | "args": [], |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 42 | }, |
| 43 | "app_list_unittests": { |
| 44 | "label": "//ui/app_list:app_list_unittests", |
dpranke | a21b31b0 | 2015-07-24 21:42:00 | [diff] [blame] | 45 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 46 | }, |
| 47 | "app_shell_unittests": { |
| 48 | "label": "//extensions/shell:app_shell_unittests", |
dpranke | a21b31b0 | 2015-07-24 21:42:00 | [diff] [blame] | 49 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 50 | }, |
| 51 | "ash_unittests": { |
| 52 | "label": "//ash:ash_unittests", |
| 53 | "type": "unknown", |
| 54 | }, |
| 55 | "aura_unittests": { |
| 56 | "label": "//ui/aura:aura_unittests", |
dpranke | a21b31b0 | 2015-07-24 21:42:00 | [diff] [blame] | 57 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 58 | }, |
| 59 | "base_unittests": { |
| 60 | "label": "//base:base_unittests", |
| 61 | "type": "console_test_launcher", |
| 62 | }, |
| 63 | "blink_heap_unittests": { |
| 64 | "label": "//third_party/WebKit/public:blink_heap_unittests", |
| 65 | "type": "unknown", |
| 66 | }, |
| 67 | "blink_platform_unittests": { |
| 68 | "label": "//third_party/WebKit/public:blink_platform_unittests", |
| 69 | "type": "unknown", |
| 70 | }, |
| 71 | "browser_tests": { |
| 72 | "label": "//chrome/test:browser_tests", |
| 73 | "type": "unknown", |
| 74 | }, |
| 75 | "cacheinvalidation_unittests": { |
| 76 | "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 77 | "type": "raw", |
| 78 | "args": [ |
| 79 | "--test-launcher-bot-mode", |
| 80 | ], |
| 81 | }, |
| 82 | "cast_base_unittests": { |
| 83 | "label": "//cast:cast_base_unittests", |
| 84 | "type": "unknown", |
| 85 | }, |
| 86 | "cast_crash_unittests": { |
| 87 | "label": "//chromecast/crash:cast_crash_unittests", |
| 88 | "type": "unknown", |
| 89 | }, |
| 90 | "cast_shell_unittests": { |
| 91 | "label": "//chromecast/app:cast_shell_unittests", |
| 92 | "type": "unknown", |
| 93 | }, |
| 94 | "cast_unittests": { |
dpranke | a21b31b0 | 2015-07-24 21:42:00 | [diff] [blame] | 95 | "label": "//media/cast:cast_unittests", |
| 96 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 97 | }, |
| 98 | "cc_unittests": { |
| 99 | "label": "//cc:cc_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 100 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 101 | }, |
| 102 | "chrome_elf_unittests": { |
| 103 | "label": "//chrome_elf:chrome_elf_unittests", |
| 104 | "type": "unknown", |
| 105 | }, |
| 106 | "chromedriver_unittests": { |
| 107 | "label": "//chrome/test/chromedriver:chromedriver_unittests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 108 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 109 | }, |
| 110 | "chromeos_unittests": { |
| 111 | "label": "//chromeos:chromeos_unittests", |
| 112 | "type": "unknown", |
| 113 | }, |
| 114 | "components_browsertests": { |
| 115 | "label": "//components:components_browsertests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 116 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 117 | }, |
| 118 | "components_unittests": { |
| 119 | "label": "//components:components_unittests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 120 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 121 | }, |
| 122 | "compositor_unittests": { |
| 123 | "label": "//ui/compositor:compositor_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 124 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 125 | }, |
| 126 | "content_browsertests": { |
| 127 | "label": "//content/test:content_browsertests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 128 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 129 | }, |
| 130 | "content_unittests": { |
| 131 | "label": "//content/test:content_unittests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 132 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 133 | }, |
| 134 | "courgette_unittests": { |
| 135 | "label": "//courgette:courgette_unittests", |
| 136 | "type": "unknown", |
| 137 | }, |
| 138 | "crypto_unittests": { |
| 139 | "label": "//crypto:crypto_unittests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 140 | "type": "console_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 141 | }, |
| 142 | "dbus_unittests": { |
| 143 | "label": "//dbus:dbus_unittests", |
| 144 | "type": "unknown", |
| 145 | }, |
| 146 | "device_unittests": { |
| 147 | "label": "//device:device_unittests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 148 | "type": "console_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 149 | }, |
| 150 | "display_unittests": { |
| 151 | "label": "//ui/display:display_unittests", |
dpranke | 1643d22 | 2015-07-27 22:22:08 | [diff] [blame^] | 152 | "type": "console_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 153 | }, |
| 154 | "events_unittests": { |
| 155 | "label": "//ui/events:events_unittests", |
| 156 | "type": "unknown", |
| 157 | }, |
| 158 | "extensions_browsertests": { |
| 159 | "label": "//extensions:extensions_browsertests", |
| 160 | "type": "unknown", |
| 161 | }, |
| 162 | "extensions_unittests": { |
| 163 | "label": "//extensions:extensions_unittests", |
| 164 | "type": "unknown", |
| 165 | }, |
| 166 | "gcm_unit_tests": { |
| 167 | "label": "//google_apis/gcm:gcm_unit_tests", |
| 168 | "type": "unknown", |
| 169 | }, |
| 170 | "gfx_unittests": { |
| 171 | "label": "//ui/gfx:gfx_unittests", |
| 172 | "type": "unknown", |
| 173 | }, |
| 174 | "gl_unittests": { |
| 175 | "label": "//ui/gl:gl_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 176 | "type": "raw", |
| 177 | "args": [], |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 178 | }, |
| 179 | "gn_unittests": { |
| 180 | "label": "//tools/gn:gn_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 181 | "type": "raw", |
| 182 | "args": [], |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 183 | }, |
| 184 | "google_apis_unittests": { |
| 185 | "label": "//google_apis:google_apis_unittests", |
| 186 | "type": "unknown", |
| 187 | }, |
| 188 | "gpu_unittests": { |
| 189 | "label": "//gpu:gpu_unittests", |
| 190 | "type": "unknown", |
| 191 | }, |
| 192 | "html_viewer_unittests": { |
| 193 | "label": "//components/html_viewer:html_viewer_unittests", |
| 194 | "type": "unknown", |
| 195 | }, |
| 196 | "installer_util_unittests": { |
| 197 | "label": "//chrome/installer/util:installer_util_unittests", |
| 198 | "type": "unknown", |
| 199 | }, |
| 200 | "interactive_ui_tests": { |
| 201 | "label": "//chrome/test:interactive_ui_tests", |
| 202 | "type": "unknown", |
| 203 | }, |
| 204 | "ipc_mojo_unittests": { |
| 205 | "label": "//ipc/mojo:ipc_mojo_unittests", |
| 206 | "type": "unknown", |
| 207 | }, |
| 208 | "ipc_tests": { |
| 209 | "label": "//ipc:ipc_tests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 210 | "type": "console_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 211 | }, |
| 212 | "jingle_unittests": { |
| 213 | "label": "//jingle:jingle_unittests", |
| 214 | "type": "unknown", |
| 215 | }, |
| 216 | "keyboard_unittests": { |
| 217 | "label": "//ui/keyboard:keyboard_unittests", |
| 218 | "type": "unknown", |
| 219 | }, |
| 220 | "media_unittests": { |
| 221 | "label": "//media:media_unittests", |
| 222 | "type": "unknown", |
| 223 | }, |
| 224 | "midi_unittests": { |
| 225 | "label": "//media:midi_unittests", |
| 226 | "type": "unknown", |
| 227 | }, |
| 228 | "mojo_common_unittests": { |
| 229 | "label": "//mojo/common:mojo_common_unittests", |
| 230 | "type": "unknown", |
| 231 | }, |
| 232 | "mojo_public_application_unittests": { |
| 233 | "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_applicaiton_unittests", |
| 234 | "type": "unknown", |
| 235 | }, |
| 236 | "mojo_public_bindings_unittests": { |
| 237 | "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", |
| 238 | "type": "unknown", |
| 239 | }, |
| 240 | "mojo_public_environment_unittests": { |
| 241 | "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", |
| 242 | "type": "unknown", |
| 243 | }, |
| 244 | "mojo_public_system_unittests": { |
| 245 | "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", |
| 246 | "type": "unknown", |
| 247 | }, |
| 248 | "mojo_public_utility_unittests": { |
| 249 | "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", |
| 250 | "type": "unknown", |
| 251 | }, |
| 252 | "mojo_runner_unittests": { |
| 253 | "label": "//mojo/runner:mojo_runner_unittests", |
| 254 | "type": "unknown", |
| 255 | }, |
| 256 | "mojo_shell_unittests": { |
| 257 | "label": "//mojo/shell:mojo_shell_unittests", |
| 258 | "type": "unknown", |
| 259 | }, |
| 260 | "mojo_surfaces_lib_unittests": { |
| 261 | "label": "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", |
| 262 | "type": "unknown", |
| 263 | }, |
| 264 | "mojo_system_unittests": { |
| 265 | "label": "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", |
| 266 | "type": "unknown", |
| 267 | }, |
| 268 | "mojo_view_manager_lib_unittests": { |
| 269 | "label": "//components/view_manager/public/cpp/tests:mojo_view_manager_lib_unittests", |
| 270 | "type": "unknown", |
| 271 | }, |
| 272 | "message_center_unittests": { |
| 273 | "label": "//ui/message_center:message_center_unittests", |
| 274 | "type": "unknown", |
| 275 | }, |
| 276 | "nacl_loader_unittests": { |
| 277 | "label": "//components/nacl:nacl_loader_unittests", |
| 278 | "type": "unknown", |
| 279 | }, |
| 280 | "net_unittests": { |
| 281 | "label": "//net:net_unittests", |
| 282 | "type": "unknown", |
| 283 | }, |
| 284 | "ozone_unittests": { |
| 285 | "label": "//ui/ozone:ozone_unittests", |
| 286 | "type": "unknown", |
| 287 | }, |
| 288 | "ppapi_unittests": { |
| 289 | "label": "//ppapi:ppapi_unittests", |
| 290 | "type": "unknown", |
| 291 | }, |
| 292 | "printing_unittests": { |
| 293 | "label": "//printing:printing_unittests", |
| 294 | "type": "unknown", |
| 295 | }, |
| 296 | "remoting_unittests": { |
| 297 | "label": "//remoting:remoting_unittests", |
| 298 | "type": "unknown", |
| 299 | }, |
| 300 | "resource_provider_unittests": { |
| 301 | "label": "//components/resource_provider:resource_provider_unittests", |
| 302 | "type": "unknown", |
| 303 | }, |
| 304 | "sandbox_linux_unittests": { |
| 305 | "label": "//sandbox/linux:sandbox_linux_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 306 | "type": "raw", |
| 307 | "args": [], |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 308 | }, |
| 309 | "sandbox_mac_unittests": { |
| 310 | "label": "//sandbox/mac:sandbox_mac_unittests", |
| 311 | "type": "unknown", |
| 312 | }, |
| 313 | "sbox_integration_tests": { |
| 314 | "label": "//sandbox/win:sbox_integration_tests", |
| 315 | "type": "unknown", |
| 316 | }, |
| 317 | "sbox_unittests": { |
| 318 | "label": "//sandbox/win:sbox_unittests", |
| 319 | "type": "unknown", |
| 320 | }, |
| 321 | "sbox_validation_tests": { |
| 322 | "label": "//sandbox/win:sbox_validation_tests", |
| 323 | "type": "unknown", |
| 324 | }, |
| 325 | "setup_unittests": { |
| 326 | "label": "//chrome/installer/setup:setup_unittests", |
| 327 | "type": "unknown", |
| 328 | }, |
| 329 | "skia_unittests": { |
| 330 | "label": "//skia:skia_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 331 | "type": "console_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 332 | }, |
| 333 | "sql_unittests": { |
| 334 | "label": "//sql:sql_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 335 | "type": "console_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 336 | }, |
| 337 | "sync_integration_tests": { |
| 338 | "label": "//sync:sync_integration_tests", |
| 339 | "type": "unknown", |
| 340 | }, |
| 341 | "sync_unit_tests": { |
| 342 | "label": "//sync:sync_unit_tests", |
| 343 | "type": "unknown", |
| 344 | }, |
| 345 | "ui_base_unittests": { |
| 346 | "label": "//ui/base:ui_base_unittests", |
| 347 | "type": "windowed_test_launcher", |
| 348 | }, |
| 349 | "ui_chromeos_unittests": { |
| 350 | "label": "//ui/chromeos:ui_chromeos_unittests", |
| 351 | "type": "unknown", |
| 352 | }, |
| 353 | "ui_touch_selection_unittests": { |
| 354 | "label": "//ui/touch_selection:ui_touch_selection_unittests", |
dpranke | a21b31b0 | 2015-07-24 21:42:00 | [diff] [blame] | 355 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 356 | }, |
| 357 | "unit_tests": { |
| 358 | "label": "//chrome/test:unit_tests", |
| 359 | "type": "unknown", |
| 360 | }, |
| 361 | "url_unittests": { |
| 362 | "label": "//url:url_unittests", |
dpranke | 177c1e2 | 2015-07-22 23:07:43 | [diff] [blame] | 363 | "type": "console_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 364 | }, |
| 365 | "view_manager_unittests": { |
| 366 | "label": "//components/view_manager:view_manager_unittests", |
| 367 | "type": "unknown", |
| 368 | }, |
| 369 | "views_unittests": { |
| 370 | "label": "//ui/views:views_unittests", |
| 371 | "type": "unknown", |
| 372 | }, |
| 373 | "webkit_unit_tests": { |
| 374 | "label": "//third_party/WebKit/public:webkit_unit_tests", |
| 375 | "type": "unknown", |
| 376 | }, |
| 377 | "wm_unittests": { |
| 378 | "label": "//ui/wm:wm_unittests", |
dpranke | a21b31b0 | 2015-07-24 21:42:00 | [diff] [blame] | 379 | "type": "windowed_test_launcher", |
dpranke | a55584f1 | 2015-07-22 00:52:47 | [diff] [blame] | 380 | }, |
| 381 | "wtf_unittests": { |
| 382 | "label": "//third_party/WebKit/public:wtf_unittests", |
| 383 | "type": "unknown", |
| 384 | }, |
| 385 | } |