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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « testing/buildbot/chromium.fyi.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This BUILD.gn file groups together filter files for particular test suites -
6 # for example filters applicable to content_browsertests are exposed as
7 # the //testing/buildbot/filters:content_browsertests target.
8
9 # Note that all filter files (for a given test suite) are unconditionally listed
10 # together, even if some filter files are applicable only to some platforms.
11 # This should help avoid unpleasant surprises when a bot config is switched in
12 # testing/buildbot/chromium.fyi.json without corresponding dependency changes
13 # here - see https://crbug.com/661447.
14
15 # To refresh, a command similar to the one below might be run in bash:
16 # $ for i in $(ls -1 testing/buildbot/filters/*.browser_tests.*filter ); \
17 # do echo " \"//$i\","; done | sort
18
19 source_set("browser_tests") {
20 testonly = true
21
22 data = [
23 "//testing/buildbot/filters/browser-side-navigation.linux.browser_tests.filt er",
24 "//testing/buildbot/filters/isolate-extensions.browser_tests.filter",
25 "//testing/buildbot/filters/mash.browser_tests.filter",
26 "//testing/buildbot/filters/mojo.fyi.browser_tests.filter",
27 "//testing/buildbot/filters/site-per-process.browser_tests.filter",
28 ]
29 }
30
31 source_set("content_browsertests") {
jbudorick 2016/11/09 18:20:44 Can we rename these source sets? They prevent cont
32 testonly = true
33
34 data = [
35 "//testing/buildbot/filters/browser-side-navigation.linux.content_browsertes ts.filter",
36 "//testing/buildbot/filters/cast-linux.content_browsertests.filter",
37 "//testing/buildbot/filters/isolate-extensions.content_browsertests.filter",
38 "//testing/buildbot/filters/site-per-process.content_browsertests.filter",
39 ]
40 }
OLDNEW
« 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