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 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
837 ], | 837 ], |
838 }, | 838 }, |
839 "cc_perftests": { | 839 "cc_perftests": { |
840 "label": "//cc:cc_perftests", | 840 "label": "//cc:cc_perftests", |
841 "type": "script", | 841 "type": "script", |
842 "script": "//testing/scripts/run_gtest_perf_test.py", | 842 "script": "//testing/scripts/run_gtest_perf_test.py", |
843 "args": [ | 843 "args": [ |
844 "cc_perftests", | 844 "cc_perftests", |
845 ], | 845 ], |
846 }, | 846 }, |
| 847 "media_perftests": { |
| 848 "label": "//media:media_perftests", |
| 849 "type": "script", |
| 850 "script": "//testing/scripts/run_gtest_perf_test.py", |
| 851 "args": [ |
| 852 "media_perftests", |
| 853 ], |
| 854 }, |
847 "load_library_perf_tests": { | 855 "load_library_perf_tests": { |
848 "label": "//chrome/test:load_library_perf_tests", | 856 "label": "//chrome/test:load_library_perf_tests", |
849 "type": "script", | 857 "type": "script", |
850 "script": "//testing/scripts/run_gtest_perf_test.py", | 858 "script": "//testing/scripts/run_gtest_perf_test.py", |
851 "args": [ | 859 "args": [ |
852 "load_library_perf_tests", | 860 "load_library_perf_tests", |
853 "--test-launcher-print-test-stdio=always" | 861 "--test-launcher-print-test-stdio=always" |
854 ], | 862 ], |
855 }, | 863 }, |
856 "tracing_perftests": { | 864 "tracing_perftests": { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 }, | 989 }, |
982 "wm_unittests": { | 990 "wm_unittests": { |
983 "label": "//ui/wm:wm_unittests", | 991 "label": "//ui/wm:wm_unittests", |
984 "type": "windowed_test_launcher", | 992 "type": "windowed_test_launcher", |
985 }, | 993 }, |
986 "wtf_unittests": { | 994 "wtf_unittests": { |
987 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 995 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
988 "type": "console_test_launcher", | 996 "type": "console_test_launcher", |
989 }, | 997 }, |
990 } | 998 } |
OLD | NEW |