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

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

Issue 2678153003: buildbot: Run the webkit layout tests under swarming on RandomOrder bots. (Closed)
Patch Set: git checkout dpranke-swarming-layouttests-linux-ng Created 3 years, 10 months 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 # This is a .pyl, or "Python Literal", file. You can treat it just like a 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a
6 # .json file, with the following exceptions: 6 # .json file, with the following exceptions:
7 # * all keys must be quoted (use single quotes, please); 7 # * all keys must be quoted (use single quotes, please);
8 # * comments are allowed, using '#' syntax; and 8 # * comments are allowed, using '#' syntax; and
9 # * trailing commas are allowed. 9 # * trailing commas are allowed.
10 10
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", 990 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests",
991 "type": "junit_test", 991 "type": "junit_test",
992 }, 992 },
993 "webapk_shell_apk_junit_tests": { 993 "webapk_shell_apk_junit_tests": {
994 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", 994 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests",
995 "type": "junit_test", 995 "type": "junit_test",
996 }, 996 },
997 "webkit_layout_tests": { 997 "webkit_layout_tests": {
998 "label": "//:webkit_layout_tests", 998 "label": "//:webkit_layout_tests",
999 "type": "script", 999 "type": "script",
1000 "script": "//testing/scripts/run_telemetry_as_googletest.py", 1000 "script": "//testing/scripts/run_isolated_script_test.py",
1001 "args": [ 1001 "args": [
1002 "--xvfb", 1002 "--xvfb",
1003 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", 1003 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1004 "--clobber-old-results",
1005 "--debug-rwt-logging",
1006 "--no-show-results",
1007 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1008 ],
1009 },
1010 "webkit_layout_tests_exparchive": {
1011 "label": "//:webkit_layout_tests_exparchive",
1012 "type": "script",
1013 "script": "//testing/scripts/run_isolated_script_test.py",
1014 "args": [
1015 "--xvfb",
1016 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests",
1004 "--clobber-old-results", 1017 "--clobber-old-results",
1005 "--no-show-results", 1018 "--no-show-results",
1006 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", 1019 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results",
1007 ], 1020 ],
1008 }, 1021 },
1009 "webkit_unit_tests": { 1022 "webkit_unit_tests": {
1010 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", 1023 "label": "//third_party/WebKit/Source/web:webkit_unit_tests",
1011 "type": "console_test_launcher", 1024 "type": "console_test_launcher",
1012 }, 1025 },
1013 "wm_unittests": { 1026 "wm_unittests": {
1014 "label": "//ui/wm:wm_unittests", 1027 "label": "//ui/wm:wm_unittests",
1015 "type": "windowed_test_launcher", 1028 "type": "windowed_test_launcher",
1016 }, 1029 },
1017 "wtf_unittests": { 1030 "wtf_unittests": {
1018 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 1031 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
1019 "type": "console_test_launcher", 1032 "type": "console_test_launcher",
1020 }, 1033 },
1021 } 1034 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698