| 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 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 "type": "windowed_test_launcher", | 932 "type": "windowed_test_launcher", |
| 933 }, | 933 }, |
| 934 "unit_tests": { | 934 "unit_tests": { |
| 935 "label": "//chrome/test:unit_tests", | 935 "label": "//chrome/test:unit_tests", |
| 936 "type": "windowed_test_launcher", | 936 "type": "windowed_test_launcher", |
| 937 }, | 937 }, |
| 938 "url_unittests": { | 938 "url_unittests": { |
| 939 "label": "//url:url_unittests", | 939 "label": "//url:url_unittests", |
| 940 "type": "console_test_launcher", | 940 "type": "console_test_launcher", |
| 941 }, | 941 }, |
| 942 "video_decode_accelerator_unittest": { |
| 943 "label": "//media/gpu:video_decode_accelerator_unittest", |
| 944 "type": "raw", |
| 945 "args": [], |
| 946 }, |
| 942 "views_mus_interactive_ui_tests": { | 947 "views_mus_interactive_ui_tests": { |
| 943 "label": "//ui/views/mus:views_mus_interactive_ui_tests", | 948 "label": "//ui/views/mus:views_mus_interactive_ui_tests", |
| 944 "type": "windowed_test_launcher", | 949 "type": "windowed_test_launcher", |
| 945 }, | 950 }, |
| 946 "views_mus_unittests": { | 951 "views_mus_unittests": { |
| 947 "label": "//ui/views/mus:views_mus_unittests", | 952 "label": "//ui/views/mus:views_mus_unittests", |
| 948 "type": "windowed_test_launcher", | 953 "type": "windowed_test_launcher", |
| 949 }, | 954 }, |
| 950 "views_unittests": { | 955 "views_unittests": { |
| 951 "label": "//ui/views:views_unittests", | 956 "label": "//ui/views:views_unittests", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 981 }, | 986 }, |
| 982 "wm_unittests": { | 987 "wm_unittests": { |
| 983 "label": "//ui/wm:wm_unittests", | 988 "label": "//ui/wm:wm_unittests", |
| 984 "type": "windowed_test_launcher", | 989 "type": "windowed_test_launcher", |
| 985 }, | 990 }, |
| 986 "wtf_unittests": { | 991 "wtf_unittests": { |
| 987 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 992 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 988 "type": "console_test_launcher", | 993 "type": "console_test_launcher", |
| 989 }, | 994 }, |
| 990 } | 995 } |
| OLD | NEW |