OLD | NEW |
(Empty) | |
| 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", |
| 35 "type": "unknown", |
| 36 }, |
| 37 "angle_unittests": { |
| 38 "label": "//gpu:angle_unittests", |
| 39 "type": "unknown", |
| 40 }, |
| 41 "app_list_unittests": { |
| 42 "label": "//ui/app_list:app_list_unittests", |
| 43 "type": "unknown", |
| 44 }, |
| 45 "app_shell_unittests": { |
| 46 "label": "//extensions/shell:app_shell_unittests", |
| 47 "type": "unknown", |
| 48 }, |
| 49 "ash_unittests": { |
| 50 "label": "//ash:ash_unittests", |
| 51 "type": "unknown", |
| 52 }, |
| 53 "aura_unittests": { |
| 54 "label": "//ui/aura:aura_unittests", |
| 55 "type": "unknown", |
| 56 }, |
| 57 "base_unittests": { |
| 58 "label": "//base:base_unittests", |
| 59 "type": "console_test_launcher", |
| 60 }, |
| 61 "blink_heap_unittests": { |
| 62 "label": "//third_party/WebKit/public:blink_heap_unittests", |
| 63 "type": "unknown", |
| 64 }, |
| 65 "blink_platform_unittests": { |
| 66 "label": "//third_party/WebKit/public:blink_platform_unittests", |
| 67 "type": "unknown", |
| 68 }, |
| 69 "browser_tests": { |
| 70 "label": "//chrome/test:browser_tests", |
| 71 "type": "unknown", |
| 72 }, |
| 73 "cacheinvalidation_unittests": { |
| 74 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 75 "type": "raw", |
| 76 "args": [ |
| 77 "--test-launcher-bot-mode", |
| 78 ], |
| 79 }, |
| 80 "cast_base_unittests": { |
| 81 "label": "//cast:cast_base_unittests", |
| 82 "type": "unknown", |
| 83 }, |
| 84 "cast_crash_unittests": { |
| 85 "label": "//chromecast/crash:cast_crash_unittests", |
| 86 "type": "unknown", |
| 87 }, |
| 88 "cast_shell_unittests": { |
| 89 "label": "//chromecast/app:cast_shell_unittests", |
| 90 "type": "unknown", |
| 91 }, |
| 92 "cast_unittests": { |
| 93 "label": "//cast:cast_unittests", |
| 94 "type": "unknown", |
| 95 }, |
| 96 "cc_unittests": { |
| 97 "label": "//cc:cc_unittests", |
| 98 "type": "unknown", |
| 99 }, |
| 100 "chrome_elf_unittests": { |
| 101 "label": "//chrome_elf:chrome_elf_unittests", |
| 102 "type": "unknown", |
| 103 }, |
| 104 "chromedriver_unittests": { |
| 105 "label": "//chrome/test/chromedriver:chromedriver_unittests", |
| 106 "type": "unknown", |
| 107 }, |
| 108 "chromeos_unittests": { |
| 109 "label": "//chromeos:chromeos_unittests", |
| 110 "type": "unknown", |
| 111 }, |
| 112 "components_browsertests": { |
| 113 "label": "//components:components_browsertests", |
| 114 "type": "unknown", |
| 115 }, |
| 116 "components_unittests": { |
| 117 "label": "//components:components_unittests", |
| 118 "type": "unknown", |
| 119 }, |
| 120 "compositor_unittests": { |
| 121 "label": "//ui/compositor:compositor_unittests", |
| 122 "type": "unknown", |
| 123 }, |
| 124 "content_browsertests": { |
| 125 "label": "//content/test:content_browsertests", |
| 126 "type": "unknown", |
| 127 }, |
| 128 "content_unittests": { |
| 129 "label": "//content/test:content_unittests", |
| 130 "type": "unknown", |
| 131 }, |
| 132 "courgette_unittests": { |
| 133 "label": "//courgette:courgette_unittests", |
| 134 "type": "unknown", |
| 135 }, |
| 136 "crypto_unittests": { |
| 137 "label": "//crypto:crypto_unittests", |
| 138 "type": "unknown", |
| 139 }, |
| 140 "dbus_unittests": { |
| 141 "label": "//dbus:dbus_unittests", |
| 142 "type": "unknown", |
| 143 }, |
| 144 "device_unittests": { |
| 145 "label": "//device:device_unittests", |
| 146 "type": "unknown", |
| 147 }, |
| 148 "display_unittests": { |
| 149 "label": "//ui/display:display_unittests", |
| 150 "type": "unknown", |
| 151 }, |
| 152 "events_unittests": { |
| 153 "label": "//ui/events:events_unittests", |
| 154 "type": "unknown", |
| 155 }, |
| 156 "extensions_browsertests": { |
| 157 "label": "//extensions:extensions_browsertests", |
| 158 "type": "unknown", |
| 159 }, |
| 160 "extensions_unittests": { |
| 161 "label": "//extensions:extensions_unittests", |
| 162 "type": "unknown", |
| 163 }, |
| 164 "gcm_unit_tests": { |
| 165 "label": "//google_apis/gcm:gcm_unit_tests", |
| 166 "type": "unknown", |
| 167 }, |
| 168 "gfx_unittests": { |
| 169 "label": "//ui/gfx:gfx_unittests", |
| 170 "type": "unknown", |
| 171 }, |
| 172 "gl_unittests": { |
| 173 "label": "//ui/gl:gl_unittests", |
| 174 "type": "unknown", |
| 175 }, |
| 176 "gn_unittests": { |
| 177 "label": "//tools/gn:gn_unittests", |
| 178 "type": "unknown", |
| 179 }, |
| 180 "google_apis_unittests": { |
| 181 "label": "//google_apis:google_apis_unittests", |
| 182 "type": "unknown", |
| 183 }, |
| 184 "gpu_unittests": { |
| 185 "label": "//gpu:gpu_unittests", |
| 186 "type": "unknown", |
| 187 }, |
| 188 "html_viewer_unittests": { |
| 189 "label": "//components/html_viewer:html_viewer_unittests", |
| 190 "type": "unknown", |
| 191 }, |
| 192 "installer_util_unittests": { |
| 193 "label": "//chrome/installer/util:installer_util_unittests", |
| 194 "type": "unknown", |
| 195 }, |
| 196 "interactive_ui_tests": { |
| 197 "label": "//chrome/test:interactive_ui_tests", |
| 198 "type": "unknown", |
| 199 }, |
| 200 "ipc_mojo_unittests": { |
| 201 "label": "//ipc/mojo:ipc_mojo_unittests", |
| 202 "type": "unknown", |
| 203 }, |
| 204 "ipc_tests": { |
| 205 "label": "//ipc:ipc_tests", |
| 206 "type": "unknown", |
| 207 }, |
| 208 "jingle_unittests": { |
| 209 "label": "//jingle:jingle_unittests", |
| 210 "type": "unknown", |
| 211 }, |
| 212 "keyboard_unittests": { |
| 213 "label": "//ui/keyboard:keyboard_unittests", |
| 214 "type": "unknown", |
| 215 }, |
| 216 "media_unittests": { |
| 217 "label": "//media:media_unittests", |
| 218 "type": "unknown", |
| 219 }, |
| 220 "midi_unittests": { |
| 221 "label": "//media:midi_unittests", |
| 222 "type": "unknown", |
| 223 }, |
| 224 "mojo_common_unittests": { |
| 225 "label": "//mojo/common:mojo_common_unittests", |
| 226 "type": "unknown", |
| 227 }, |
| 228 "mojo_public_application_unittests": { |
| 229 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_applicaiton_unitt
ests", |
| 230 "type": "unknown", |
| 231 }, |
| 232 "mojo_public_bindings_unittests": { |
| 233 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittest
s", |
| 234 "type": "unknown", |
| 235 }, |
| 236 "mojo_public_environment_unittests": { |
| 237 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unitt
ests", |
| 238 "type": "unknown", |
| 239 }, |
| 240 "mojo_public_system_unittests": { |
| 241 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests"
, |
| 242 "type": "unknown", |
| 243 }, |
| 244 "mojo_public_utility_unittests": { |
| 245 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests
", |
| 246 "type": "unknown", |
| 247 }, |
| 248 "mojo_runner_unittests": { |
| 249 "label": "//mojo/runner:mojo_runner_unittests", |
| 250 "type": "unknown", |
| 251 }, |
| 252 "mojo_shell_unittests": { |
| 253 "label": "//mojo/shell:mojo_shell_unittests", |
| 254 "type": "unknown", |
| 255 }, |
| 256 "mojo_surfaces_lib_unittests": { |
| 257 "label": "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", |
| 258 "type": "unknown", |
| 259 }, |
| 260 "mojo_system_unittests": { |
| 261 "label": "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", |
| 262 "type": "unknown", |
| 263 }, |
| 264 "mojo_view_manager_lib_unittests": { |
| 265 "label": "//components/view_manager/public/cpp/tests:mojo_view_manager_lib_u
nittests", |
| 266 "type": "unknown", |
| 267 }, |
| 268 "message_center_unittests": { |
| 269 "label": "//ui/message_center:message_center_unittests", |
| 270 "type": "unknown", |
| 271 }, |
| 272 "nacl_loader_unittests": { |
| 273 "label": "//components/nacl:nacl_loader_unittests", |
| 274 "type": "unknown", |
| 275 }, |
| 276 "net_unittests": { |
| 277 "label": "//net:net_unittests", |
| 278 "type": "unknown", |
| 279 }, |
| 280 "ozone_unittests": { |
| 281 "label": "//ui/ozone:ozone_unittests", |
| 282 "type": "unknown", |
| 283 }, |
| 284 "ppapi_unittests": { |
| 285 "label": "//ppapi:ppapi_unittests", |
| 286 "type": "unknown", |
| 287 }, |
| 288 "printing_unittests": { |
| 289 "label": "//printing:printing_unittests", |
| 290 "type": "unknown", |
| 291 }, |
| 292 "remoting_unittests": { |
| 293 "label": "//remoting:remoting_unittests", |
| 294 "type": "unknown", |
| 295 }, |
| 296 "resource_provider_unittests": { |
| 297 "label": "//components/resource_provider:resource_provider_unittests", |
| 298 "type": "unknown", |
| 299 }, |
| 300 "sandbox_linux_unittests": { |
| 301 "label": "//sandbox/linux:sandbox_linux_unittests", |
| 302 "type": "unknown", |
| 303 }, |
| 304 "sandbox_mac_unittests": { |
| 305 "label": "//sandbox/mac:sandbox_mac_unittests", |
| 306 "type": "unknown", |
| 307 }, |
| 308 "sbox_integration_tests": { |
| 309 "label": "//sandbox/win:sbox_integration_tests", |
| 310 "type": "unknown", |
| 311 }, |
| 312 "sbox_unittests": { |
| 313 "label": "//sandbox/win:sbox_unittests", |
| 314 "type": "unknown", |
| 315 }, |
| 316 "sbox_validation_tests": { |
| 317 "label": "//sandbox/win:sbox_validation_tests", |
| 318 "type": "unknown", |
| 319 }, |
| 320 "setup_unittests": { |
| 321 "label": "//chrome/installer/setup:setup_unittests", |
| 322 "type": "unknown", |
| 323 }, |
| 324 "skia_unittests": { |
| 325 "label": "//skia:skia_unittests", |
| 326 "type": "unknown", |
| 327 }, |
| 328 "sql_unittests": { |
| 329 "label": "//sql:sql_unittests", |
| 330 "type": "unknown", |
| 331 }, |
| 332 "sync_integration_tests": { |
| 333 "label": "//sync:sync_integration_tests", |
| 334 "type": "unknown", |
| 335 }, |
| 336 "sync_unit_tests": { |
| 337 "label": "//sync:sync_unit_tests", |
| 338 "type": "unknown", |
| 339 }, |
| 340 "ui_base_unittests": { |
| 341 "label": "//ui/base:ui_base_unittests", |
| 342 "type": "windowed_test_launcher", |
| 343 }, |
| 344 "ui_chromeos_unittests": { |
| 345 "label": "//ui/chromeos:ui_chromeos_unittests", |
| 346 "type": "unknown", |
| 347 }, |
| 348 "ui_touch_selection_unittests": { |
| 349 "label": "//ui/touch_selection:ui_touch_selection_unittests", |
| 350 "type": "unknown", |
| 351 }, |
| 352 "unit_tests": { |
| 353 "label": "//chrome/test:unit_tests", |
| 354 "type": "unknown", |
| 355 }, |
| 356 "url_unittests": { |
| 357 "label": "//url:url_unittests", |
| 358 "type": "unknown", |
| 359 }, |
| 360 "view_manager_unittests": { |
| 361 "label": "//components/view_manager:view_manager_unittests", |
| 362 "type": "unknown", |
| 363 }, |
| 364 "views_unittests": { |
| 365 "label": "//ui/views:views_unittests", |
| 366 "type": "unknown", |
| 367 }, |
| 368 "webkit_unit_tests": { |
| 369 "label": "//third_party/WebKit/public:webkit_unit_tests", |
| 370 "type": "unknown", |
| 371 }, |
| 372 "wm_unittests": { |
| 373 "label": "//ui/wm:wm_unittests", |
| 374 "type": "unknown", |
| 375 }, |
| 376 "wtf_unittests": { |
| 377 "label": "//third_party/WebKit/public:wtf_unittests", |
| 378 "type": "unknown", |
| 379 }, |
| 380 } |
OLD | NEW |