| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 "type": "windowed_test_launcher", | 335 "type": "windowed_test_launcher", |
| 336 }, | 336 }, |
| 337 "headless_browsertests": { | 337 "headless_browsertests": { |
| 338 "label": "//headless:headless_browsertests", | 338 "label": "//headless:headless_browsertests", |
| 339 "type": "console_test_launcher", | 339 "type": "console_test_launcher", |
| 340 }, | 340 }, |
| 341 "headless_unittests": { | 341 "headless_unittests": { |
| 342 "label": "//headless:headless_unittests", | 342 "label": "//headless:headless_unittests", |
| 343 "type": "console_test_launcher", | 343 "type": "console_test_launcher", |
| 344 }, | 344 }, |
| 345 "input_device_unittests": { |
| 346 "label": "//services/ui/input_devices:input_device_unittests", |
| 347 "type": "console_test_launcher", |
| 348 }, |
| 345 "installer_util_unittests": { | 349 "installer_util_unittests": { |
| 346 "label": "//chrome/installer/util:installer_util_unittests", | 350 "label": "//chrome/installer/util:installer_util_unittests", |
| 347 "type": "console_test_launcher", | 351 "type": "console_test_launcher", |
| 348 }, | 352 }, |
| 349 "install_static_unittests": { | 353 "install_static_unittests": { |
| 350 "label": "//chrome/install_static:install_static_unittests", | 354 "label": "//chrome/install_static:install_static_unittests", |
| 351 "type": "console_test_launcher", | 355 "type": "console_test_launcher", |
| 352 }, | 356 }, |
| 353 "interactive_ui_tests": { | 357 "interactive_ui_tests": { |
| 354 "label": "//chrome/test:interactive_ui_tests", | 358 "label": "//chrome/test:interactive_ui_tests", |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 }, | 640 }, |
| 637 "wm_unittests": { | 641 "wm_unittests": { |
| 638 "label": "//ui/wm:wm_unittests", | 642 "label": "//ui/wm:wm_unittests", |
| 639 "type": "windowed_test_launcher", | 643 "type": "windowed_test_launcher", |
| 640 }, | 644 }, |
| 641 "wtf_unittests": { | 645 "wtf_unittests": { |
| 642 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 646 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 643 "type": "console_test_launcher", | 647 "type": "console_test_launcher", |
| 644 }, | 648 }, |
| 645 } | 649 } |
| OLD | NEW |