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

Unified Diff: testing/buildbot/filters/BUILD.gn

Issue 2469353002: Convert Site Isolation Win bot to --isolate-extensions [2nd attempt]. (Closed)
Patch Set: Rebasing to minimize chance of merge conflicts (and of another https://crbug.com/661447). 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/buildbot/chromium.fyi.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/buildbot/filters/BUILD.gn
diff --git a/testing/buildbot/filters/BUILD.gn b/testing/buildbot/filters/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..c3e32105f7123bd54e008f2b450c220c25dc69a1
--- /dev/null
+++ b/testing/buildbot/filters/BUILD.gn
@@ -0,0 +1,40 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# This BUILD.gn file groups together filter files for particular test suites -
+# for example filters applicable to content_browsertests are exposed as
+# the //testing/buildbot/filters:content_browsertests target.
+
+# Note that all filter files (for a given test suite) are unconditionally listed
+# together, even if some filter files are applicable only to some platforms.
+# This should help avoid unpleasant surprises when a bot config is switched in
+# testing/buildbot/chromium.fyi.json without corresponding dependency changes
+# here - see https://crbug.com/661447.
+
+# To refresh, a command similar to the one below might be run in bash:
+# $ for i in $(ls -1 testing/buildbot/filters/*.browser_tests.*filter ); \
+# do echo " \"//$i\","; done | sort
+
+source_set("browser_tests") {
+ testonly = true
+
+ data = [
+ "//testing/buildbot/filters/browser-side-navigation.linux.browser_tests.filter",
+ "//testing/buildbot/filters/isolate-extensions.browser_tests.filter",
+ "//testing/buildbot/filters/mash.browser_tests.filter",
+ "//testing/buildbot/filters/mojo.fyi.browser_tests.filter",
+ "//testing/buildbot/filters/site-per-process.browser_tests.filter",
+ ]
+}
+
+source_set("content_browsertests") {
jbudorick 2016/11/09 18:20:44 Can we rename these source sets? They prevent cont
+ testonly = true
+
+ data = [
+ "//testing/buildbot/filters/browser-side-navigation.linux.content_browsertests.filter",
+ "//testing/buildbot/filters/cast-linux.content_browsertests.filter",
+ "//testing/buildbot/filters/isolate-extensions.content_browsertests.filter",
+ "//testing/buildbot/filters/site-per-process.content_browsertests.filter",
+ ]
+}
« no previous file with comments | « testing/buildbot/chromium.fyi.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698