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 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 ], | 853 ], |
854 }, | 854 }, |
855 "cc_perftests": { | 855 "cc_perftests": { |
856 "label": "//cc:cc_perftests", | 856 "label": "//cc:cc_perftests", |
857 "type": "script", | 857 "type": "script", |
858 "script": "//testing/scripts/run_gtest_perf_test.py", | 858 "script": "//testing/scripts/run_gtest_perf_test.py", |
859 "args": [ | 859 "args": [ |
860 "cc_perftests", | 860 "cc_perftests", |
861 ], | 861 ], |
862 }, | 862 }, |
| 863 "media_perftests": { |
| 864 "label": "//media:media_perftests", |
| 865 "type": "script", |
| 866 "script": "//testing/scripts/run_gtest_perf_test.py", |
| 867 "args": [ |
| 868 "media_perftests", |
| 869 ], |
| 870 }, |
863 "load_library_perf_tests": { | 871 "load_library_perf_tests": { |
864 "label": "//chrome/test:load_library_perf_tests", | 872 "label": "//chrome/test:load_library_perf_tests", |
865 "type": "script", | 873 "type": "script", |
866 "script": "//testing/scripts/run_gtest_perf_test.py", | 874 "script": "//testing/scripts/run_gtest_perf_test.py", |
867 "args": [ | 875 "args": [ |
868 "load_library_perf_tests", | 876 "load_library_perf_tests", |
869 "--test-launcher-print-test-stdio=always" | 877 "--test-launcher-print-test-stdio=always" |
870 ], | 878 ], |
871 }, | 879 }, |
872 "tracing_perftests": { | 880 "tracing_perftests": { |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 }, | 1015 }, |
1008 "wm_unittests": { | 1016 "wm_unittests": { |
1009 "label": "//ui/wm:wm_unittests", | 1017 "label": "//ui/wm:wm_unittests", |
1010 "type": "windowed_test_launcher", | 1018 "type": "windowed_test_launcher", |
1011 }, | 1019 }, |
1012 "wtf_unittests": { | 1020 "wtf_unittests": { |
1013 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 1021 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
1014 "type": "console_test_launcher", | 1022 "type": "console_test_launcher", |
1015 }, | 1023 }, |
1016 } | 1024 } |
OLD | NEW |