| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "args": [], | 292 "args": [], |
| 293 }, | 293 }, |
| 294 "google_apis_unittests": { | 294 "google_apis_unittests": { |
| 295 "label": "//google_apis:google_apis_unittests", | 295 "label": "//google_apis:google_apis_unittests", |
| 296 "type": "console_test_launcher", | 296 "type": "console_test_launcher", |
| 297 }, | 297 }, |
| 298 "gpu_unittests": { | 298 "gpu_unittests": { |
| 299 "label": "//gpu:gpu_unittests", | 299 "label": "//gpu:gpu_unittests", |
| 300 "type": "windowed_test_launcher", | 300 "type": "windowed_test_launcher", |
| 301 }, | 301 }, |
| 302 "headless_browsertests": { |
| 303 "label": "//headless:headless_browsertests", |
| 304 "type": "console_test_launcher", |
| 305 }, |
| 306 "headless_unittests": { |
| 307 "label": "//headless:headless_unittests", |
| 308 "type": "console_test_launcher", |
| 309 }, |
| 302 "installer_util_unittests": { | 310 "installer_util_unittests": { |
| 303 "label": "//chrome/installer/util:installer_util_unittests", | 311 "label": "//chrome/installer/util:installer_util_unittests", |
| 304 "type": "console_test_launcher", | 312 "type": "console_test_launcher", |
| 305 }, | 313 }, |
| 306 "interactive_ui_tests": { | 314 "interactive_ui_tests": { |
| 307 "label": "//chrome/test:interactive_ui_tests", | 315 "label": "//chrome/test:interactive_ui_tests", |
| 308 "type": "windowed_test_launcher", | 316 "type": "windowed_test_launcher", |
| 309 }, | 317 }, |
| 310 "ipc_mojo_unittests": { | 318 "ipc_mojo_unittests": { |
| 311 "label": "//ipc/mojo:ipc_mojo_unittests", | 319 "label": "//ipc/mojo:ipc_mojo_unittests", |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 }, | 570 }, |
| 563 "wm_unittests": { | 571 "wm_unittests": { |
| 564 "label": "//ui/wm:wm_unittests", | 572 "label": "//ui/wm:wm_unittests", |
| 565 "type": "windowed_test_launcher", | 573 "type": "windowed_test_launcher", |
| 566 }, | 574 }, |
| 567 "wtf_unittests": { | 575 "wtf_unittests": { |
| 568 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 576 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 569 "type": "console_test_launcher", | 577 "type": "console_test_launcher", |
| 570 }, | 578 }, |
| 571 } | 579 } |
| OLD | NEW |