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 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
870 "type": "console_test_launcher", | 870 "type": "console_test_launcher", |
871 }, | 871 }, |
872 "webapk_client_junit_tests": { | 872 "webapk_client_junit_tests": { |
873 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", | 873 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", |
874 "type": "junit_test", | 874 "type": "junit_test", |
875 }, | 875 }, |
876 "webapk_shell_apk_junit_tests": { | 876 "webapk_shell_apk_junit_tests": { |
877 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", | 877 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", |
878 "type": "junit_test", | 878 "type": "junit_test", |
879 }, | 879 }, |
| 880 "webkit_layout_tests": { |
| 881 "label": "//:webkit_layout_tests", |
| 882 "type": "script", |
| 883 "script": "//testing/scripts/run_telemetry_as_googletest.py", |
| 884 "args": [ |
| 885 "--xvfb", |
| 886 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", |
| 887 "--clobber-old-results", |
| 888 "--no-show-results", |
| 889 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", |
| 890 ], |
| 891 }, |
880 "webkit_unit_tests": { | 892 "webkit_unit_tests": { |
881 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", | 893 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", |
882 "type": "console_test_launcher", | 894 "type": "console_test_launcher", |
883 }, | 895 }, |
884 "wm_unittests": { | 896 "wm_unittests": { |
885 "label": "//ui/wm:wm_unittests", | 897 "label": "//ui/wm:wm_unittests", |
886 "type": "windowed_test_launcher", | 898 "type": "windowed_test_launcher", |
887 }, | 899 }, |
888 "wtf_unittests": { | 900 "wtf_unittests": { |
889 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 901 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
890 "type": "console_test_launcher", | 902 "type": "console_test_launcher", |
891 }, | 903 }, |
892 } | 904 } |
OLD | NEW |