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