Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: testing/buildbot/gn_isolate_map.pyl

Issue 2452313003: Creating webkit_layout_tests target. (Closed)
Patch Set: Updating for telemetry change. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 "type": "console_test_launcher", 934 "type": "console_test_launcher",
935 }, 935 },
936 "webapk_client_junit_tests": { 936 "webapk_client_junit_tests": {
937 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", 937 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
938 "type": "junit_test", 938 "type": "junit_test",
939 }, 939 },
940 "webapk_shell_apk_junit_tests": { 940 "webapk_shell_apk_junit_tests": {
941 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", 941 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
942 "type": "junit_test", 942 "type": "junit_test",
943 }, 943 },
944 "webkit_layout_tests": {
945 "label": "//:webkit_layout_tests",
946 "type": "script",
947 "script": "//testing/scripts/run_telemetry_as_googletest.py",
948 "args": [
949 "--xvfb",
950 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
951 "--clobber-old-results",
952 "--no-show-results",
953 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
954 ],
955 },
944 "webkit_unit_tests": { 956 "webkit_unit_tests": {
945 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", 957 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
946 "type": "console_test_launcher", 958 "type": "console_test_launcher",
947 }, 959 },
948 "webrtc_nonparallel_tests": { 960 "webrtc_nonparallel_tests": {
949 "label": "//webrtc:webrtc_nonparallel_tests", 961 "label": "//webrtc:webrtc_nonparallel_tests",
950 "type": "console_test_launcher", 962 "type": "console_test_launcher",
951 }, 963 },
952 "wm_unittests": { 964 "wm_unittests": {
953 "label": "//ui/wm:wm_unittests", 965 "label": "//ui/wm:wm_unittests",
954 "type": "windowed_test_launcher", 966 "type": "windowed_test_launcher",
955 }, 967 },
956 "wtf_unittests": { 968 "wtf_unittests": {
957 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 969 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
958 "type": "console_test_launcher", 970 "type": "console_test_launcher",
959 }, 971 },
960 "xmllite_xmpp_unittests": { 972 "xmllite_xmpp_unittests": {
961 "label": "//webrtc:xmllite_xmpp_unittests", 973 "label": "//webrtc:xmllite_xmpp_unittests",
962 "type": "console_test_launcher", 974 "type": "console_test_launcher",
963 } 975 }
964 } 976 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698