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 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
940 "type": "windowed_test_launcher", | 940 "type": "windowed_test_launcher", |
941 }, | 941 }, |
942 "unit_tests": { | 942 "unit_tests": { |
943 "label": "//chrome/test:unit_tests", | 943 "label": "//chrome/test:unit_tests", |
944 "type": "windowed_test_launcher", | 944 "type": "windowed_test_launcher", |
945 }, | 945 }, |
946 "url_unittests": { | 946 "url_unittests": { |
947 "label": "//url:url_unittests", | 947 "label": "//url:url_unittests", |
948 "type": "console_test_launcher", | 948 "type": "console_test_launcher", |
949 }, | 949 }, |
950 "views_aura_mus_unittests": { | |
951 "label": "//ui/views/mus:views_aura_mus_unittests", | |
952 "type": "windowed_test_launcher", | |
953 }, | |
954 "views_mus_interactive_ui_tests": { | 950 "views_mus_interactive_ui_tests": { |
955 "label": "//ui/views/mus:views_mus_interactive_ui_tests", | 951 "label": "//ui/views/mus:views_mus_interactive_ui_tests", |
956 "type": "windowed_test_launcher", | 952 "type": "windowed_test_launcher", |
957 }, | 953 }, |
958 "views_mus_unittests": { | 954 "views_mus_unittests": { |
959 "label": "//ui/views/mus:views_mus_unittests", | 955 "label": "//ui/views/mus:views_mus_unittests", |
960 "type": "windowed_test_launcher", | 956 "type": "windowed_test_launcher", |
961 }, | 957 }, |
962 "views_unittests": { | 958 "views_unittests": { |
963 "label": "//ui/views:views_unittests", | 959 "label": "//ui/views:views_unittests", |
(...skipping 29 matching lines...) Expand all Loading... |
993 }, | 989 }, |
994 "wm_unittests": { | 990 "wm_unittests": { |
995 "label": "//ui/wm:wm_unittests", | 991 "label": "//ui/wm:wm_unittests", |
996 "type": "windowed_test_launcher", | 992 "type": "windowed_test_launcher", |
997 }, | 993 }, |
998 "wtf_unittests": { | 994 "wtf_unittests": { |
999 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 995 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
1000 "type": "console_test_launcher", | 996 "type": "console_test_launcher", |
1001 }, | 997 }, |
1002 } | 998 } |
OLD | NEW |