| 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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 "type": "windowed_test_launcher", | 580 "type": "windowed_test_launcher", |
| 581 }, | 581 }, |
| 582 "unit_tests": { | 582 "unit_tests": { |
| 583 "label": "//chrome/test:unit_tests", | 583 "label": "//chrome/test:unit_tests", |
| 584 "type": "windowed_test_launcher", | 584 "type": "windowed_test_launcher", |
| 585 }, | 585 }, |
| 586 "url_unittests": { | 586 "url_unittests": { |
| 587 "label": "//url:url_unittests", | 587 "label": "//url:url_unittests", |
| 588 "type": "console_test_launcher", | 588 "type": "console_test_launcher", |
| 589 }, | 589 }, |
| 590 "views_mus_interactive_ui_tests": { | |
| 591 "label": "//ui/views/mus:views_mus_interactive_ui_tests", | |
| 592 "type": "windowed_test_launcher", | |
| 593 }, | |
| 594 "views_mus_unittests": { | 590 "views_mus_unittests": { |
| 595 "label": "//ui/views/mus:views_mus_unittests", | 591 "label": "//ui/views/mus:views_mus_unittests", |
| 596 "type": "windowed_test_launcher", | 592 "type": "windowed_test_launcher", |
| 597 }, | 593 }, |
| 598 "views_unittests": { | 594 "views_unittests": { |
| 599 "label": "//ui/views:views_unittests", | 595 "label": "//ui/views:views_unittests", |
| 600 "type": "windowed_test_launcher", | 596 "type": "windowed_test_launcher", |
| 601 }, | 597 }, |
| 602 "webkit_unit_tests": { | 598 "webkit_unit_tests": { |
| 603 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", | 599 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 604 "type": "console_test_launcher", | 600 "type": "console_test_launcher", |
| 605 }, | 601 }, |
| 606 "wm_unittests": { | 602 "wm_unittests": { |
| 607 "label": "//ui/wm:wm_unittests", | 603 "label": "//ui/wm:wm_unittests", |
| 608 "type": "windowed_test_launcher", | 604 "type": "windowed_test_launcher", |
| 609 }, | 605 }, |
| 610 "wtf_unittests": { | 606 "wtf_unittests": { |
| 611 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 607 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 612 "type": "console_test_launcher", | 608 "type": "console_test_launcher", |
| 613 }, | 609 }, |
| 614 } | 610 } |
| OLD | NEW |