| 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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 "type": "windowed_test_launcher", | 838 "type": "windowed_test_launcher", |
| 839 }, | 839 }, |
| 840 "unit_tests": { | 840 "unit_tests": { |
| 841 "label": "//chrome/test:unit_tests", | 841 "label": "//chrome/test:unit_tests", |
| 842 "type": "windowed_test_launcher", | 842 "type": "windowed_test_launcher", |
| 843 }, | 843 }, |
| 844 "url_unittests": { | 844 "url_unittests": { |
| 845 "label": "//url:url_unittests", | 845 "label": "//url:url_unittests", |
| 846 "type": "console_test_launcher", | 846 "type": "console_test_launcher", |
| 847 }, | 847 }, |
| 848 "views_aura_mus_unittests": { |
| 849 "label": "//ui/views/mus:views_aura_mus_unittests", |
| 850 "type": "windowed_test_launcher", |
| 851 }, |
| 848 "views_mus_interactive_ui_tests": { | 852 "views_mus_interactive_ui_tests": { |
| 849 "label": "//ui/views/mus:views_mus_interactive_ui_tests", | 853 "label": "//ui/views/mus:views_mus_interactive_ui_tests", |
| 850 "type": "windowed_test_launcher", | 854 "type": "windowed_test_launcher", |
| 851 }, | 855 }, |
| 852 "views_mus_unittests": { | 856 "views_mus_unittests": { |
| 853 "label": "//ui/views/mus:views_mus_unittests", | 857 "label": "//ui/views/mus:views_mus_unittests", |
| 854 "type": "windowed_test_launcher", | 858 "type": "windowed_test_launcher", |
| 855 }, | 859 }, |
| 856 "views_unittests": { | 860 "views_unittests": { |
| 857 "label": "//ui/views:views_unittests", | 861 "label": "//ui/views:views_unittests", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 875 }, | 879 }, |
| 876 "wm_unittests": { | 880 "wm_unittests": { |
| 877 "label": "//ui/wm:wm_unittests", | 881 "label": "//ui/wm:wm_unittests", |
| 878 "type": "windowed_test_launcher", | 882 "type": "windowed_test_launcher", |
| 879 }, | 883 }, |
| 880 "wtf_unittests": { | 884 "wtf_unittests": { |
| 881 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 885 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 882 "type": "console_test_launcher", | 886 "type": "console_test_launcher", |
| 883 }, | 887 }, |
| 884 } | 888 } |
| OLD | NEW |