| OLD | NEW |
| 1 ## Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and | 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. | 6 # test type classifications for the tests that are run on the bots. |
| 7 # | 7 # |
| 8 # This mapping is used by MB so that we can uniformly refer to test binaries | 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 | 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 | 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 | 11 # much always the same as the Ninja target name, since GYP target names are not |
| 12 # hierarchical). | 12 # hierarchical). |
| 13 # | 13 # |
| 14 # The "label" field specifies the matching GN label for the given ninja | 14 # The "label" field specifies the matching GN label for the given ninja |
| 15 # target. | 15 # target. |
| 16 # | 16 # |
| 17 # The "type" field is used to determine what the command line for the test | 17 # The "type" field is used to determine what the command line for the test |
| 18 # needs to be; valid values are: | 18 # needs to be; valid values are: |
| 19 # | 19 # |
| 20 # "windowed_test_launcher" | 20 # "windowed_test_launcher" |
| 21 # : the test is a gtest-based test that uses the "brave-new-test-launcher" | 21 # : the test is a gtest-based test that uses the "brave-new-test-launcher" |
| 22 # from //base/test:test_support and needs to run under Xvfb if run on | 22 # from //base/test:test_support and needs to run under Xvfb if run on |
| 23 # an X11-based platform (use_x11=true). | 23 # an X11-based platform (use_x11=true). |
| 24 # "console_test_launcher" | 24 # "console_test_launcher" |
| 25 # : the test is a gtest-based test that uses the "brave-new-test-launcher" | 25 # : the test is a gtest-based test that uses the "brave-new-test-launcher" |
| 26 # from //base/test:test_support but does not need Xvfb. | 26 # from //base/test:test_support but does not need Xvfb. |
| 27 # "gpu_browser_test" | 27 # "gpu_browser_test" |
| 28 # : the test is a subset of the browser_tests that will be run against | 28 # : the test is a subset of the browser_tests that will be run against |
| 29 # a real GPU. | 29 # a real GPU. |
| 30 # "additional_compile_target" |
| 31 # : this isn't actually a test, but we still need a mapping from the |
| 32 # ninja target to the GN label in order to analyze it. |
| 33 # "junit_test" |
| 34 # : this is a JUnit test. |
| 30 # "raw" | 35 # "raw" |
| 31 # : the test is a standalone executable; it may take an optional list of | 36 # : the test is a standalone executable; it may take an optional list of |
| 32 # command line arguments in the "args" field, but otherwise needs no | 37 # command line arguments in the "args" field, but otherwise needs no |
| 33 # extra files or special handling. | 38 # extra files or special handling. |
| 34 # "script" | 39 # "script" |
| 35 # : the test is a python script; the path to the script is specified in | 40 # : the test is a python script; the path to the script is specified in |
| 36 # the "script" field. | 41 # the "script" field. |
| 37 # "unknown" | 42 # "unknown" |
| 38 # : (the default), which indicates that we don't know what the command line | 43 # : (the default), which indicates that we don't know what the command line |
| 39 # needs to be (this is a fatal error). | 44 # needs to be (this is a fatal error). |
| (...skipping 14 matching lines...) Expand all Loading... |
| 54 # to use follows the test_launcher patterns, the actual GN label refers | 59 # to use follows the test_launcher patterns, the actual GN label refers |
| 55 # to a different type of thing (usually a "group") and so MB can find | 60 # to a different type of thing (usually a "group") and so MB can find |
| 56 # the generated runtime files in the right place. This is used, for | 61 # the generated runtime files in the right place. This is used, for |
| 57 # example, in content_site_isolation_browsertests . | 62 # example, in content_site_isolation_browsertests . |
| 58 # | 63 # |
| 59 # The optional "script" field is used when "type" == "script", and | 64 # The optional "script" field is used when "type" == "script", and |
| 60 # specifies the GN path to the corresponding python file, e.g. | 65 # specifies the GN path to the corresponding python file, e.g. |
| 61 # "//testing/scripts/foo.py". | 66 # "//testing/scripts/foo.py". |
| 62 | 67 |
| 63 { | 68 { |
| 69 "All": { |
| 70 "label": "//:All", |
| 71 "type": "additional_compile_target", |
| 72 }, |
| 73 "All_syzygy": { |
| 74 "label": "//:All_syzygy", |
| 75 "type": "additional_compile_target", |
| 76 }, |
| 64 "accessibility_unittests": { | 77 "accessibility_unittests": { |
| 65 "label": "//ui/accessibility:accessibility_unittests", | 78 "label": "//ui/accessibility:accessibility_unittests", |
| 66 "type": "raw", | 79 "type": "raw", |
| 67 "args": [], | 80 "args": [], |
| 68 }, | 81 }, |
| 69 "android_webview_test_apk": { | 82 "android_webview_test_apk": { |
| 70 "label": "//android_webview/test:android_webview_test_apk", | 83 "label": "//android_webview/test:android_webview_test_apk", |
| 71 "type": "console_test_launcher", | 84 "type": "console_test_launcher", |
| 72 }, | 85 }, |
| 73 "android_webview_unittests": { | 86 "android_webview_unittests": { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 }, | 134 }, |
| 122 "audio_decoder_unittests": { | 135 "audio_decoder_unittests": { |
| 123 "label": "//webrtc/modules/audio_coding:audio_decoder_unittests", | 136 "label": "//webrtc/modules/audio_coding:audio_decoder_unittests", |
| 124 "type": "console_test_launcher", | 137 "type": "console_test_launcher", |
| 125 }, | 138 }, |
| 126 "audio_unittests": { | 139 "audio_unittests": { |
| 127 "label": "//media:audio_unittests", | 140 "label": "//media:audio_unittests", |
| 128 "type": "raw", | 141 "type": "raw", |
| 129 "args": [], | 142 "args": [], |
| 130 }, | 143 }, |
| 144 "aura_builder": { |
| 145 "label": "//:aura_builder", |
| 146 "type": "additional_compile_target", |
| 147 }, |
| 131 "aura_unittests": { | 148 "aura_unittests": { |
| 132 "label": "//ui/aura:aura_unittests", | 149 "label": "//ui/aura:aura_unittests", |
| 133 "type": "windowed_test_launcher", | 150 "type": "windowed_test_launcher", |
| 134 }, | 151 }, |
| 152 "base_junit_tests": { |
| 153 "label": "//base:base_junit_tests", |
| 154 "type": "junit_test", |
| 155 }, |
| 135 "base_unittests": { | 156 "base_unittests": { |
| 136 "label": "//base:base_unittests", | 157 "label": "//base:base_unittests", |
| 137 "type": "console_test_launcher", | 158 "type": "console_test_launcher", |
| 138 }, | 159 }, |
| 139 "battor_agent_unittests": { | 160 "battor_agent_unittests": { |
| 140 "label": "//tools/battor_agent:battor_agent_unittests", | 161 "label": "//tools/battor_agent:battor_agent_unittests", |
| 141 "type": "console_test_launcher", | 162 "type": "console_test_launcher", |
| 142 }, | 163 }, |
| 143 "blimp_browsertests": { | 164 "blimp_browsertests": { |
| 144 "label": "//blimp:blimp_browsertests", | 165 "label": "//blimp:blimp_browsertests", |
| 145 "type": "console_test_launcher", | 166 "type": "console_test_launcher", |
| 146 }, | 167 }, |
| 147 "blimp_test_apk": { | 168 "blimp_test_apk": { |
| 148 "label": "//blimp/client:blimp_test_apk", | 169 "label": "//blimp/client:blimp_test_apk", |
| 149 "type": "console_test_launcher", | 170 "type": "console_test_launcher", |
| 150 }, | 171 }, |
| 151 "blimp_unittests": { | 172 "blimp_unittests": { |
| 152 "label": "//blimp:blimp_unittests", | 173 "label": "//blimp:blimp_unittests", |
| 153 "type": "console_test_launcher", | 174 "type": "console_test_launcher", |
| 154 }, | 175 }, |
| 155 "blink_heap_unittests": { | 176 "blink_heap_unittests": { |
| 156 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", | 177 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", |
| 157 "type": "console_test_launcher", | 178 "type": "console_test_launcher", |
| 158 }, | 179 }, |
| 159 "blink_platform_unittests": { | 180 "blink_platform_unittests": { |
| 160 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", | 181 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", |
| 161 "type": "console_test_launcher", | 182 "type": "console_test_launcher", |
| 162 }, | 183 }, |
| 184 "blink_tests": { |
| 185 "label": "//:blink_tests", |
| 186 "type": "additional_compile_target", |
| 187 }, |
| 163 "breakpad_unittests": { | 188 "breakpad_unittests": { |
| 164 "label": "//breakpad:breakpad_unittests", | 189 "label": "//breakpad:breakpad_unittests", |
| 165 "type": "console_test_launcher", | 190 "type": "console_test_launcher", |
| 166 }, | 191 }, |
| 167 "browser_tests": { | 192 "browser_tests": { |
| 168 "label": "//chrome/test:browser_tests", | 193 "label": "//chrome/test:browser_tests", |
| 169 "type": "windowed_test_launcher", | 194 "type": "windowed_test_launcher", |
| 170 }, | 195 }, |
| 171 "cacheinvalidation_unittests": { | 196 "cacheinvalidation_unittests": { |
| 172 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 197 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 173 "type": "raw", | 198 "type": "raw", |
| 174 "args": [ | 199 "args": [ |
| 175 "--test-launcher-bot-mode", | 200 "--test-launcher-bot-mode", |
| 176 ], | 201 ], |
| 177 }, | 202 }, |
| 178 "capture_unittests": { | 203 "capture_unittests": { |
| 179 "label": "//media/capture:capture_unittests", | 204 "label": "//media/capture:capture_unittests", |
| 180 "type": "windowed_test_launcher", | 205 "type": "windowed_test_launcher", |
| 181 }, | 206 }, |
| 182 "cast_alsa_cma_backend_unittests": { | 207 "cast_alsa_cma_backend_unittests": { |
| 183 "label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittest
s", | 208 "label": "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittest
s", |
| 184 "type": "console_test_launcher", | 209 "type": "console_test_launcher", |
| 185 }, | 210 }, |
| 186 "cast_base_unittests": { | 211 "cast_base_unittests": { |
| 187 "label": "//cast:cast_base_unittests", | 212 "label": "//chromecast/base:cast_base_unittests", |
| 188 "type": "console_test_launcher", | 213 "type": "console_test_launcher", |
| 189 }, | 214 }, |
| 190 "cast_crash_unittests": { | 215 "cast_crash_unittests": { |
| 191 "label": "//chromecast/crash:cast_crash_unittests", | 216 "label": "//chromecast/crash:cast_crash_unittests", |
| 192 "type": "console_test_launcher", | 217 "type": "console_test_launcher", |
| 193 }, | 218 }, |
| 219 "cast_media_unittests": { |
| 220 "label": "//chromecast/media:cast_media_unittests", |
| 221 "type": "console_test_launcher", |
| 222 }, |
| 223 "cast_shell": { |
| 224 "label": "//chromecast:cast_shell", |
| 225 "type": "additional_compile_target", |
| 226 }, |
| 227 "cast_shell_apk": { |
| 228 "label": "//chromecast:cast_shell_apk", |
| 229 "type": "additional_compile_target", |
| 230 }, |
| 194 "cast_shell_unittests": { | 231 "cast_shell_unittests": { |
| 195 "label": "//chromecast/app:cast_shell_unittests", | 232 "label": "//chromecast/app:cast_shell_unittests", |
| 196 "type": "console_test_launcher", | 233 "type": "console_test_launcher", |
| 197 }, | 234 }, |
| 235 "cast_shell_browser_test": { |
| 236 "label": "//chromecast/browser:cast_shell_browser_test", |
| 237 "type": "console_test_launcher", |
| 238 }, |
| 198 "cast_unittests": { | 239 "cast_unittests": { |
| 199 "label": "//media/cast:cast_unittests", | 240 "label": "//media/cast:cast_unittests", |
| 200 "type": "windowed_test_launcher", | 241 "type": "windowed_test_launcher", |
| 201 }, | 242 }, |
| 202 "cc_unittests": { | 243 "cc_unittests": { |
| 203 "label": "//cc:cc_unittests", | 244 "label": "//cc:cc_unittests", |
| 204 "type": "windowed_test_launcher", | 245 "type": "windowed_test_launcher", |
| 205 }, | 246 }, |
| 247 "chrome": { |
| 248 "label": "//chrome:chrome", |
| 249 "type": "additional_compile_target", |
| 250 }, |
| 206 "chrome_app_unittests": { | 251 "chrome_app_unittests": { |
| 207 "label": "//chrome/test:chrome_app_unittests", | 252 "label": "//chrome/test:chrome_app_unittests", |
| 208 "type": "console_test_launcher", | 253 "type": "console_test_launcher", |
| 209 }, | 254 }, |
| 210 "chrome_elf_unittests": { | 255 "chrome_elf_unittests": { |
| 211 "label": "//chrome_elf:chrome_elf_unittests", | 256 "label": "//chrome_elf:chrome_elf_unittests", |
| 212 "type": "raw", | 257 "type": "raw", |
| 213 }, | 258 }, |
| 259 "chrome_junit_tests": { |
| 260 "label": "//chrome/android:chrome_junit_tests", |
| 261 "type": "junit_test", |
| 262 }, |
| 263 "chrome_official_builder": { |
| 264 "label": "//:chrome_official_builder", |
| 265 "type": "additional_compile_target", |
| 266 }, |
| 267 "chrome_official_builder_no_unittests": { |
| 268 "label": "//:chrome_official_builder_no_unittests", |
| 269 "type": "additional_compile_target", |
| 270 }, |
| 271 "chrome_public_apk": { |
| 272 "label": "//chrome/android:chrome_public_apk", |
| 273 "type": "additional_compile_target", |
| 274 }, |
| 214 "chrome_public_test_apk": { | 275 "chrome_public_test_apk": { |
| 215 "label": "//chrome/android:chrome_public_test_apk", | 276 "label": "//chrome/android:chrome_public_test_apk", |
| 216 "type": "console_test_launcher", | 277 "type": "console_test_launcher", |
| 217 }, | 278 }, |
| 218 "chrome_sync_shell_test_apk": { | 279 "chrome_sync_shell_test_apk": { |
| 219 "label": "//chrome/android:chrome_sync_shell_test_apk", | 280 "label": "//chrome/android:chrome_sync_shell_test_apk", |
| 220 "type": "console_test_launcher", | 281 "type": "console_test_launcher", |
| 221 }, | 282 }, |
| 222 "chromedriver_unittests": { | 283 "chromedriver_unittests": { |
| 223 "label": "//chrome/test/chromedriver:chromedriver_unittests", | 284 "label": "//chrome/test/chromedriver:chromedriver_unittests", |
| 224 "type": "windowed_test_launcher", | 285 "type": "windowed_test_launcher", |
| 225 }, | 286 }, |
| 226 "chromeos_unittests": { | 287 "chromeos_unittests": { |
| 227 "label": "//chromeos:chromeos_unittests", | 288 "label": "//chromeos:chromeos_unittests", |
| 228 "type": "console_test_launcher", | 289 "type": "console_test_launcher", |
| 229 }, | 290 }, |
| 230 "chromevox_tests": { | 291 "chromevox_tests": { |
| 231 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests", | 292 "label": "//chrome/browser/resources/chromeos/chromevox:chromevox_tests", |
| 232 "type": "windowed_test_launcher", | 293 "type": "windowed_test_launcher", |
| 233 }, | 294 }, |
| 295 "chromium_builder_asan": { |
| 296 "label": "//:chromium_builder_asan", |
| 297 "type": "additional_compile_target", |
| 298 }, |
| 299 "chromium_builder_dbg_drmemory_win": { |
| 300 "label": "//:chromium_builder_dbg_drmemory_win", |
| 301 "type": "additional_compile_target", |
| 302 }, |
| 303 "chromium_builder_lkgr_drmemory_win": { |
| 304 "label": "//:chromium_builder_lkgr_drmemory_win", |
| 305 "type": "additional_compile_target", |
| 306 }, |
| 307 "chromium_builder_perf": { |
| 308 "label": "//:chromium_builder_perf", |
| 309 "type": "additional_compile_target", |
| 310 }, |
| 311 "chromium_builder_tests": { |
| 312 "label": "//:chromium_builder_tests", |
| 313 "type": "additional_compile_target", |
| 314 }, |
| 315 "chromium_swarm_tests": { |
| 316 "label": "//:chromium_swarm_tests", |
| 317 "type": "additional_compile_target", |
| 318 }, |
| 319 "chromiumos_preflight": { |
| 320 "label": "//:chromiumos_preflight", |
| 321 "type": "additional_compile_target", |
| 322 }, |
| 234 "common_audio_unittests": { | 323 "common_audio_unittests": { |
| 235 "label": "//webrtc/common_audio:common_audio_unittests", | 324 "label": "//webrtc/common_audio:common_audio_unittests", |
| 236 "type": "console_test_launcher", | 325 "type": "console_test_launcher", |
| 237 }, | 326 }, |
| 238 "common_video_unittests": { | 327 "common_video_unittests": { |
| 239 "label": "//webrtc/common_video:common_video_unittests", | 328 "label": "//webrtc/common_video:common_video_unittests", |
| 240 "type": "console_test_launcher", | 329 "type": "console_test_launcher", |
| 241 }, | 330 }, |
| 242 "components_browsertests": { | 331 "components_browsertests": { |
| 243 "label": "//components:components_browsertests", | 332 "label": "//components:components_browsertests", |
| 244 "type": "windowed_test_launcher", | 333 "type": "windowed_test_launcher", |
| 245 }, | 334 }, |
| 335 "components_invalidation_impl_junit_tests": { |
| 336 "label": "//components/invalidation/impl:components_invalidation_impl_junit_
tests", |
| 337 "type": "junit_test", |
| 338 }, |
| 339 "components_policy_junit_tests": { |
| 340 "label": "//components/policy/android:components_policy_junit_tests", |
| 341 "type": "junit_test", |
| 342 }, |
| 246 "components_unittests": { | 343 "components_unittests": { |
| 247 "label": "//components:components_unittests", | 344 "label": "//components:components_unittests", |
| 248 "type": "windowed_test_launcher", | 345 "type": "windowed_test_launcher", |
| 249 }, | 346 }, |
| 347 "components_web_restrictions_junit_tests": { |
| 348 "label": "//components/web_restrictions:components_web_restrictions_junit_te
sts", |
| 349 "type": "junit_test", |
| 350 }, |
| 250 "compositor_unittests": { | 351 "compositor_unittests": { |
| 251 "label": "//ui/compositor:compositor_unittests", | 352 "label": "//ui/compositor:compositor_unittests", |
| 252 "type": "windowed_test_launcher", | 353 "type": "windowed_test_launcher", |
| 253 }, | 354 }, |
| 254 "content_browsertests": { | 355 "content_browsertests": { |
| 255 "label": "//content/test:content_browsertests", | 356 "label": "//content/test:content_browsertests", |
| 256 "type": "windowed_test_launcher", | 357 "type": "windowed_test_launcher", |
| 257 }, | 358 }, |
| 359 "content_junit_tests": { |
| 360 "label": "//content/public/android:content_junit_tests", |
| 361 "type": "junit_test", |
| 362 }, |
| 258 "content_site_isolation_browsertests": { | 363 "content_site_isolation_browsertests": { |
| 259 "label": "//content/test:content_site_isolation_browsertests", | 364 "label": "//content/test:content_site_isolation_browsertests", |
| 260 "label_type": "group", | 365 "label_type": "group", |
| 261 "type": "windowed_test_launcher", | 366 "type": "windowed_test_launcher", |
| 262 "executable": "content_browsertests", | 367 "executable": "content_browsertests", |
| 263 "args": ["--site-per-process", "--test-launcher-filter-file=../../testing/bu
ildbot/filters/site-per-process.content_browsertests.filter"], | 368 "args": ["--site-per-process", "--test-launcher-filter-file=../../testing/bu
ildbot/filters/site-per-process.content_browsertests.filter"], |
| 264 }, | 369 }, |
| 265 "content_shell_test_apk": { | 370 "content_shell_test_apk": { |
| 266 "label": "//content/shell/android:content_shell_test_apk", | 371 "label": "//content/shell/android:content_shell_test_apk", |
| 267 "type": "console_test_launcher", | 372 "type": "console_test_launcher", |
| 268 }, | 373 }, |
| 269 "content_unittests": { | 374 "content_unittests": { |
| 270 "label": "//content/test:content_unittests", | 375 "label": "//content/test:content_unittests", |
| 271 "type": "windowed_test_launcher", | 376 "type": "windowed_test_launcher", |
| 272 }, | 377 }, |
| 273 "courgette_unittests": { | 378 "courgette_unittests": { |
| 274 "label": "//courgette:courgette_unittests", | 379 "label": "//courgette:courgette_unittests", |
| 275 "type": "console_test_launcher", | 380 "type": "console_test_launcher", |
| 276 }, | 381 }, |
| 382 "cronet_package": { |
| 383 "label": "//components/cronet/android:cronet_package", |
| 384 "type": "additional_compile_target", |
| 385 }, |
| 386 "cronet_test_instrumentation_apk": { |
| 387 "label": "//components/cronet/android:cronet_test_instrumentation_apk", |
| 388 "type": "additional_compile_target", |
| 389 }, |
| 277 "crypto_unittests": { | 390 "crypto_unittests": { |
| 278 "label": "//crypto:crypto_unittests", | 391 "label": "//crypto:crypto_unittests", |
| 279 "type": "console_test_launcher", | 392 "type": "console_test_launcher", |
| 280 }, | 393 }, |
| 281 "dbus_unittests": { | 394 "dbus_unittests": { |
| 282 "label": "//dbus:dbus_unittests", | 395 "label": "//dbus:dbus_unittests", |
| 283 "type": "windowed_test_launcher", | 396 "type": "windowed_test_launcher", |
| 284 }, | 397 }, |
| 285 "device_unittests": { | 398 "device_unittests": { |
| 286 "label": "//device:device_unittests", | 399 "label": "//device:device_unittests", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 "gl_tests": { | 447 "gl_tests": { |
| 335 "label": "//gpu:gl_tests", | 448 "label": "//gpu:gl_tests", |
| 336 "type": "raw", | 449 "type": "raw", |
| 337 "args": [], | 450 "args": [], |
| 338 }, | 451 }, |
| 339 "gl_unittests": { | 452 "gl_unittests": { |
| 340 "label": "//ui/gl:gl_unittests", | 453 "label": "//ui/gl:gl_unittests", |
| 341 "type": "raw", | 454 "type": "raw", |
| 342 "args": [], | 455 "args": [], |
| 343 }, | 456 }, |
| 457 "gn_all": { |
| 458 "label": "//:gn_all", |
| 459 "type": "additional_compile_target", |
| 460 }, |
| 344 "gn_unittests": { | 461 "gn_unittests": { |
| 345 "label": "//tools/gn:gn_unittests", | 462 "label": "//tools/gn:gn_unittests", |
| 346 "type": "raw", | 463 "type": "raw", |
| 347 "args": [], | 464 "args": [], |
| 348 }, | 465 }, |
| 349 "google_apis_unittests": { | 466 "google_apis_unittests": { |
| 350 "label": "//google_apis:google_apis_unittests", | 467 "label": "//google_apis:google_apis_unittests", |
| 351 "type": "console_test_launcher", | 468 "type": "console_test_launcher", |
| 352 }, | 469 }, |
| 353 "gpu_ipc_service_unittests": { | 470 "gpu_ipc_service_unittests": { |
| 354 "label": "//gpu/ipc/service:gpu_ipc_service_unittests", | 471 "label": "//gpu/ipc/service:gpu_ipc_service_unittests", |
| 355 "type": "windowed_test_launcher", | 472 "type": "windowed_test_launcher", |
| 356 }, | 473 }, |
| 357 "gpu_unittests": { | 474 "gpu_unittests": { |
| 358 "label": "//gpu:gpu_unittests", | 475 "label": "//gpu:gpu_unittests", |
| 359 "type": "windowed_test_launcher", | 476 "type": "windowed_test_launcher", |
| 360 }, | 477 }, |
| 478 "headless_lib": { |
| 479 "label": "//headless:headless_lib", |
| 480 "type": "additional_compile_target", |
| 481 }, |
| 361 "headless_browsertests": { | 482 "headless_browsertests": { |
| 362 "label": "//headless:headless_browsertests", | 483 "label": "//headless:headless_browsertests", |
| 363 "type": "console_test_launcher", | 484 "type": "console_test_launcher", |
| 364 }, | 485 }, |
| 486 "headless_shell": { |
| 487 "label": "//headless:headless_shell", |
| 488 "type": "additional_compile_target", |
| 489 }, |
| 490 "headless_tests": { |
| 491 "label": "//headless:headless_tests", |
| 492 "type": "additional_compile_target", |
| 493 }, |
| 365 "headless_unittests": { | 494 "headless_unittests": { |
| 366 "label": "//headless:headless_unittests", | 495 "label": "//headless:headless_unittests", |
| 367 "type": "console_test_launcher", | 496 "type": "console_test_launcher", |
| 368 }, | 497 }, |
| 369 "input_device_unittests": { | 498 "input_device_unittests": { |
| 370 "label": "//services/ui/input_devices:input_device_unittests", | 499 "label": "//services/ui/input_devices:input_device_unittests", |
| 371 "type": "console_test_launcher", | 500 "type": "console_test_launcher", |
| 372 }, | 501 }, |
| 373 "installer_util_unittests": { | 502 "installer_util_unittests": { |
| 374 "label": "//chrome/installer/util:installer_util_unittests", | 503 "label": "//chrome/installer/util:installer_util_unittests", |
| 375 "type": "console_test_launcher", | 504 "type": "console_test_launcher", |
| 376 }, | 505 }, |
| 377 "install_static_unittests": { | 506 "install_static_unittests": { |
| 378 "label": "//chrome/install_static:install_static_unittests", | 507 "label": "//chrome/install_static:install_static_unittests", |
| 379 "type": "console_test_launcher", | 508 "type": "console_test_launcher", |
| 380 }, | 509 }, |
| 381 "interactive_ui_tests": { | 510 "interactive_ui_tests": { |
| 382 "label": "//chrome/test:interactive_ui_tests", | 511 "label": "//chrome/test:interactive_ui_tests", |
| 383 "type": "windowed_test_launcher", | 512 "type": "windowed_test_launcher", |
| 384 }, | 513 }, |
| 514 "ios_chrome_unittests": { |
| 515 "label": "//ios/chrome:ios_chrome_unittests", |
| 516 "type": "raw", |
| 517 "args": [], |
| 518 }, |
| 519 "ios_net_unittests": { |
| 520 "label": "//ios/net:ios_net_unittests", |
| 521 "type": "raw", |
| 522 "args": [], |
| 523 }, |
| 524 "ios_web_inttests": { |
| 525 "label": "//ios/web:ios_web_inttests", |
| 526 "type": "raw", |
| 527 "args": [], |
| 528 }, |
| 529 "ios_web_unittests": { |
| 530 "label": "//ios/web:ios_web_unittests", |
| 531 "type": "raw", |
| 532 "args": [], |
| 533 }, |
| 385 "ipc_tests": { | 534 "ipc_tests": { |
| 386 "label": "//ipc:ipc_tests", | 535 "label": "//ipc:ipc_tests", |
| 387 "type": "console_test_launcher", | 536 "type": "console_test_launcher", |
| 388 }, | 537 }, |
| 389 "jingle_unittests": { | 538 "jingle_unittests": { |
| 390 "label": "//jingle:jingle_unittests", | 539 "label": "//jingle:jingle_unittests", |
| 391 "type": "console_test_launcher", | 540 "type": "console_test_launcher", |
| 392 }, | 541 }, |
| 542 "junit_unit_tests": { |
| 543 "label": "//testing/android/junit:junit_unit_tests", |
| 544 "type": "junit_test", |
| 545 }, |
| 393 "keyboard_unittests": { | 546 "keyboard_unittests": { |
| 394 "label": "//ui/keyboard:keyboard_unittests", | 547 "label": "//ui/keyboard:keyboard_unittests", |
| 395 "type": "console_test_launcher", | 548 "type": "console_test_launcher", |
| 396 }, | 549 }, |
| 397 "leveldb_service_unittests": { | 550 "leveldb_service_unittests": { |
| 398 "label": "//components/leveldb:leveldb_service_unittests", | 551 "label": "//components/leveldb:leveldb_service_unittests", |
| 399 "type": "console_test_launcher", | 552 "type": "console_test_launcher", |
| 400 }, | 553 }, |
| 401 # See http://crbug.com/585151 | 554 # See http://crbug.com/585151 |
| 402 #"libaddressinput_unittests": { | 555 "libaddressinput_unittests": { |
| 403 #"label": "//third_party/libaddressinput:libaddressinput_unittests", | 556 "label": "//third_party/libaddressinput:libaddressinput_unittests", |
| 404 #"type": "console_test_launcher", | 557 "type": "console_test_launcher", |
| 405 #}, | 558 }, |
| 406 # See http://crbug.com/585151 | 559 # See http://crbug.com/585151 |
| 407 #"libphonenumber_unittests": { | 560 "libphonenumber_unittests": { |
| 408 #"label": "//third_party/libphonenumber:libphonenumber_unittests", | 561 "label": "//third_party/libphonenumber:libphonenumber_unittests", |
| 409 #"type": "console_test_launcher", | 562 "type": "console_test_launcher", |
| 410 #}, | 563 }, |
| 411 "mac_installer_unittests": { | 564 "mac_installer_unittests": { |
| 412 "label": "//chrome/installer/mac/app:mac_installer_unittests", | 565 "label": "//chrome/installer/mac/app:mac_installer_unittests", |
| 413 "type": "console_test_launcher", | 566 "type": "console_test_launcher", |
| 414 }, | 567 }, |
| 568 "mash:all" : { |
| 569 "label": "//mash:all", |
| 570 "type": "additional_compile_target", |
| 571 }, |
| 415 "media_unittests": { | 572 "media_unittests": { |
| 416 "label": "//media:media_unittests", | 573 "label": "//media:media_unittests", |
| 417 "type": "windowed_test_launcher", | 574 "type": "windowed_test_launcher", |
| 418 }, | 575 }, |
| 419 "media_mojo_shell_unittests": { | 576 "media_mojo_shell_unittests": { |
| 420 "label": "//media/mojo/services:media_mojo_shell_unittests", | 577 "label": "//media/mojo/services:media_mojo_shell_unittests", |
| 421 "type": "console_test_launcher", | 578 "type": "console_test_launcher", |
| 422 }, | 579 }, |
| 423 "media_mojo_unittests": { | 580 "media_mojo_unittests": { |
| 424 "label": "//media/mojo:media_mojo_unittests", | 581 "label": "//media/mojo:media_mojo_unittests", |
| 425 "type": "console_test_launcher", | 582 "type": "console_test_launcher", |
| 426 }, | 583 }, |
| 427 "media_blink_unittests": { | 584 "media_blink_unittests": { |
| 428 "label": "//media/blink:media_blink_unittests", | 585 "label": "//media/blink:media_blink_unittests", |
| 429 "type": "windowed_test_launcher", | 586 "type": "windowed_test_launcher", |
| 430 }, | 587 }, |
| 431 "midi_unittests": { | 588 "midi_unittests": { |
| 432 "label": "//media/midi:midi_unittests", | 589 "label": "//media/midi:midi_unittests", |
| 433 "type": "windowed_test_launcher", | 590 "type": "windowed_test_launcher", |
| 434 }, | 591 }, |
| 592 "mini_installer": { |
| 593 "label": "//chrome/installer/mini_installer:mini_installer", |
| 594 "type": "additional_compile_target", |
| 595 }, |
| 435 "modules_tests": { | 596 "modules_tests": { |
| 436 "label": "//webrtc/modules:modules_tests", | 597 "label": "//webrtc/modules:modules_tests", |
| 437 "type": "console_test_launcher", | 598 "type": "console_test_launcher", |
| 438 }, | 599 }, |
| 439 "modules_unittests": { | 600 "modules_unittests": { |
| 440 "label": "//webrtc/modules:modules_unittests", | 601 "label": "//webrtc/modules:modules_unittests", |
| 441 "type": "windowed_test_launcher", | 602 "type": "windowed_test_launcher", |
| 442 }, | 603 }, |
| 443 "mojo_common_unittests": { | 604 "mojo_common_unittests": { |
| 444 "label": "//mojo/common:mojo_common_unittests", | 605 "label": "//mojo/common:mojo_common_unittests", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 }, | 676 }, |
| 516 "nacl_loader_unittests": { | 677 "nacl_loader_unittests": { |
| 517 "label": "//components/nacl/loader:nacl_loader_unittests", | 678 "label": "//components/nacl/loader:nacl_loader_unittests", |
| 518 "type": "raw", | 679 "type": "raw", |
| 519 "args": [], | 680 "args": [], |
| 520 }, | 681 }, |
| 521 "navigation_unittests": { | 682 "navigation_unittests": { |
| 522 "label": "//services/navigation:navigation_unittests", | 683 "label": "//services/navigation:navigation_unittests", |
| 523 "type": "windowed_test_launcher", | 684 "type": "windowed_test_launcher", |
| 524 }, | 685 }, |
| 686 "net_junit_tests": { |
| 687 "label": "//net/android:net_junit_tests", |
| 688 "type": "junit_test", |
| 689 }, |
| 525 "net_unittests": { | 690 "net_unittests": { |
| 526 "label": "//net:net_unittests", | 691 "label": "//net:net_unittests", |
| 527 "type": "console_test_launcher", | 692 "type": "console_test_launcher", |
| 528 }, | 693 }, |
| 694 "next_version_mini_installer": { |
| 695 "label": "//chrome/installer/mini_installer:next_version_mini_installer", |
| 696 "type": "additional_compile_target", |
| 697 }, |
| 529 "ozone_unittests": { | 698 "ozone_unittests": { |
| 530 "label": "//ui/ozone:ozone_unittests", | 699 "label": "//ui/ozone:ozone_unittests", |
| 531 "type": "console_test_launcher", | 700 "type": "console_test_launcher", |
| 532 }, | 701 }, |
| 533 "ozone_gl_unittests": { | 702 "ozone_gl_unittests": { |
| 534 "label": "//ui/ozone/gl:ozone_gl_unittests", | 703 "label": "//ui/ozone/gl:ozone_gl_unittests", |
| 535 "type": "console_test_launcher", | 704 "type": "console_test_launcher", |
| 536 }, | 705 }, |
| 537 "peerconnection_unittests": { | 706 "peerconnection_unittests": { |
| 538 "label": "//webrtc/api:peerconnection_unittests", | 707 "label": "//webrtc/api:peerconnection_unittests", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 "type": "console_test_launcher", | 761 "type": "console_test_launcher", |
| 593 }, | 762 }, |
| 594 "sql_unittests": { | 763 "sql_unittests": { |
| 595 "label": "//sql:sql_unittests", | 764 "label": "//sql:sql_unittests", |
| 596 "type": "console_test_launcher", | 765 "type": "console_test_launcher", |
| 597 }, | 766 }, |
| 598 "sync_integration_tests": { | 767 "sync_integration_tests": { |
| 599 "label": "//chrome/test:sync_integration_tests", | 768 "label": "//chrome/test:sync_integration_tests", |
| 600 "type": "windowed_test_launcher", | 769 "type": "windowed_test_launcher", |
| 601 }, | 770 }, |
| 771 "system_webview_apk": { |
| 772 "label": "//android_webview:system_webview_apk", |
| 773 "type": "additional_compile_target", |
| 774 }, |
| 602 "system_wrappers_unittests": { | 775 "system_wrappers_unittests": { |
| 603 "label": "//webrtc/system_wrappers:system_wrappers_unittests", | 776 "label": "//webrtc/system_wrappers:system_wrappers_unittests", |
| 604 "type": "console_test_launcher", | 777 "type": "console_test_launcher", |
| 605 }, | 778 }, |
| 606 "tab_capture_end2end_tests": { | 779 "tab_capture_end2end_tests": { |
| 607 "label": "//chrome/test:browser_tests", | 780 "label": "//chrome/test:browser_tests", |
| 608 "type": "gpu_browser_test", | 781 "type": "gpu_browser_test", |
| 609 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", | 782 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", |
| 610 }, | 783 }, |
| 611 "telemetry_gpu_integration_test": { | 784 "telemetry_gpu_integration_test": { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 }, | 857 }, |
| 685 "ui_chromeos_unittests": { | 858 "ui_chromeos_unittests": { |
| 686 "label": "//ui/chromeos:ui_chromeos_unittests", | 859 "label": "//ui/chromeos:ui_chromeos_unittests", |
| 687 "type": "windowed_test_launcher", | 860 "type": "windowed_test_launcher", |
| 688 }, | 861 }, |
| 689 "ui_arc_unittests": { | 862 "ui_arc_unittests": { |
| 690 "label": "//ui/arc:ui_arc_unittests", | 863 "label": "//ui/arc:ui_arc_unittests", |
| 691 "type": "raw", | 864 "type": "raw", |
| 692 "args": [], | 865 "args": [], |
| 693 }, | 866 }, |
| 867 "ui_junit_tests": { |
| 868 "label": "//ui/android:ui_junit_tests", |
| 869 "type": "junit_test", |
| 870 }, |
| 694 "ui_struct_traits_unittests": { | 871 "ui_struct_traits_unittests": { |
| 695 "label": "//services/ui/public/interfaces:ui_struct_traits_unittests", | 872 "label": "//services/ui/public/interfaces:ui_struct_traits_unittests", |
| 696 "type": "console_test_launcher", | 873 "type": "console_test_launcher", |
| 697 }, | 874 }, |
| 698 "ui_touch_selection_unittests": { | 875 "ui_touch_selection_unittests": { |
| 699 "label": "//ui/touch_selection:ui_touch_selection_unittests", | 876 "label": "//ui/touch_selection:ui_touch_selection_unittests", |
| 700 "type": "windowed_test_launcher", | 877 "type": "windowed_test_launcher", |
| 701 }, | 878 }, |
| 702 "unit_tests": { | 879 "unit_tests": { |
| 703 "label": "//chrome/test:unit_tests", | 880 "label": "//chrome/test:unit_tests", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 720 "type": "windowed_test_launcher", | 897 "type": "windowed_test_launcher", |
| 721 }, | 898 }, |
| 722 "views_unittests": { | 899 "views_unittests": { |
| 723 "label": "//ui/views:views_unittests", | 900 "label": "//ui/views:views_unittests", |
| 724 "type": "windowed_test_launcher", | 901 "type": "windowed_test_launcher", |
| 725 }, | 902 }, |
| 726 "voice_engine_unittests": { | 903 "voice_engine_unittests": { |
| 727 "label": "//webrtc/voice_engine:voice_engine_unittests", | 904 "label": "//webrtc/voice_engine:voice_engine_unittests", |
| 728 "type": "console_test_launcher", | 905 "type": "console_test_launcher", |
| 729 }, | 906 }, |
| 907 "webapk_client_junit_tests": { |
| 908 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", |
| 909 "type": "junit_test", |
| 910 }, |
| 911 "webapk_shell_apk_junit_tests": { |
| 912 "label": "///chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", |
| 913 "type": "junit_test", |
| 914 }, |
| 730 "webkit_unit_tests": { | 915 "webkit_unit_tests": { |
| 731 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", | 916 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 732 "type": "console_test_launcher", | 917 "type": "console_test_launcher", |
| 733 }, | 918 }, |
| 734 "wm_unittests": { | 919 "wm_unittests": { |
| 735 "label": "//ui/wm:wm_unittests", | 920 "label": "//ui/wm:wm_unittests", |
| 736 "type": "windowed_test_launcher", | 921 "type": "windowed_test_launcher", |
| 737 }, | 922 }, |
| 738 "wtf_unittests": { | 923 "wtf_unittests": { |
| 739 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 924 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 740 "type": "console_test_launcher", | 925 "type": "console_test_launcher", |
| 741 }, | 926 }, |
| 742 "xmllite_xmpp_unittests": { | 927 "xmllite_xmpp_unittests": { |
| 743 "label": "//webrtc:xmllite_xmpp_unittests", | 928 "label": "//webrtc:xmllite_xmpp_unittests", |
| 744 "type": "console_test_launcher", | 929 "type": "console_test_launcher", |
| 745 } | 930 } |
| 746 } | 931 } |
| OLD | NEW |