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 |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 "args": [], | 288 "args": [], |
289 }, | 289 }, |
290 "google_apis_unittests": { | 290 "google_apis_unittests": { |
291 "label": "//google_apis:google_apis_unittests", | 291 "label": "//google_apis:google_apis_unittests", |
292 "type": "console_test_launcher", | 292 "type": "console_test_launcher", |
293 }, | 293 }, |
294 "gpu_unittests": { | 294 "gpu_unittests": { |
295 "label": "//gpu:gpu_unittests", | 295 "label": "//gpu:gpu_unittests", |
296 "type": "windowed_test_launcher", | 296 "type": "windowed_test_launcher", |
297 }, | 297 }, |
| 298 "headless_browsertests": { |
| 299 "label": "//headless:headless_browsertests", |
| 300 "type": "console_test_launcher", |
| 301 }, |
298 "installer_util_unittests": { | 302 "installer_util_unittests": { |
299 "label": "//chrome/installer/util:installer_util_unittests", | 303 "label": "//chrome/installer/util:installer_util_unittests", |
300 "type": "console_test_launcher", | 304 "type": "console_test_launcher", |
301 }, | 305 }, |
302 "interactive_ui_tests": { | 306 "interactive_ui_tests": { |
303 "label": "//chrome/test:interactive_ui_tests", | 307 "label": "//chrome/test:interactive_ui_tests", |
304 "type": "windowed_test_launcher", | 308 "type": "windowed_test_launcher", |
305 }, | 309 }, |
306 "ipc_mojo_unittests": { | 310 "ipc_mojo_unittests": { |
307 "label": "//ipc/mojo:ipc_mojo_unittests", | 311 "label": "//ipc/mojo:ipc_mojo_unittests", |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 }, | 573 }, |
570 "wm_unittests": { | 574 "wm_unittests": { |
571 "label": "//ui/wm:wm_unittests", | 575 "label": "//ui/wm:wm_unittests", |
572 "type": "windowed_test_launcher", | 576 "type": "windowed_test_launcher", |
573 }, | 577 }, |
574 "wtf_unittests": { | 578 "wtf_unittests": { |
575 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 579 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
576 "type": "console_test_launcher", | 580 "type": "console_test_launcher", |
577 }, | 581 }, |
578 } | 582 } |
OLD | NEW |