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

Unified Diff: BUILD.gn

Issue 2678153003: buildbot: Run the webkit layout tests under swarming on RandomOrder bots. (Closed)
Patch Set: Rebase onto master. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | testing/buildbot/chromium.fyi.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 613a34031b4e0cf0b3f2709efbd5d216356a4b53..749850ef772b7bd703d63f4e52ff536081b94f13 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -914,9 +914,26 @@ if (!is_ios) {
}
# https://www.chromium.org/developers/testing/webkit-layout-tests
- group("webkit_layout_tests") {
+
+ # The _exparchive at the end of the name indicates to the isolate recipe
+ # that the isolate should be archived separately using the `exparchive`
+ # command, rather than as part of the normal `batcharchive` command.
+ group("webkit_layout_tests_exparchive") {
testonly = true
+ deps = [
+ ":webkit_layout_tests",
+ ]
+ data_deps = [
+ ":webkit_layout_tests",
+ ]
+ }
+ # This target contains only a small subset of the layout tests,
+ # and is useful for testing with the regular isolate mechanism.
+ # To run the full layout test suite you need to use
+ # :webkit_layout_tests_exparchive, above, instead.
+ group("webkit_layout_tests") {
+ testonly = true
data_deps = [
"//content/shell:content_shell",
"//tools/imagediff",
@@ -953,11 +970,18 @@ if (!is_ios) {
data = [
"//testing/scripts/common.py",
"//testing/xvfb.py",
- "//testing/scripts/run_telemetry_as_googletest.py",
+ "//testing/scripts/run_isolated_script_test.py",
"//third_party/WebKit/LayoutTests/",
"//third_party/WebKit/Tools/Scripts/",
"$root_build_dir/resources/inspector/",
]
+
+ if (is_android) {
+ data += [
+ "//third_party/catapult/",
+ "//build/android/",
+ ]
+ }
}
}
« no previous file with comments | « no previous file | testing/buildbot/chromium.fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698