| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 BUILD.gn file groups together filter files for particular test suites - | 5 # This BUILD.gn file groups together filter files for particular test suites - |
| 6 # for example filters applicable to content_browsertests are exposed as | 6 # for example filters applicable to content_browsertests are exposed as |
| 7 # the //testing/buildbot/filters:content_browsertests target. | 7 # the //testing/buildbot/filters:content_browsertests target. |
| 8 | 8 |
| 9 # Note that all filter files (for a given test suite) are unconditionally listed | 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. | 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 | 11 # This should help avoid unpleasant surprises when a bot config is switched in |
| 12 # testing/buildbot/chromium.fyi.json without corresponding dependency changes | 12 # testing/buildbot/chromium.fyi.json without corresponding dependency changes |
| 13 # here - see https://crbug.com/661447. | 13 # here - see https://crbug.com/661447. |
| 14 | 14 |
| 15 # To refresh, a command similar to the one below might be run in bash: | 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 ); \ | 16 # $ for i in $(ls -1 testing/buildbot/filters/*.browser_tests.*filter ); \ |
| 17 # do echo " \"//$i\","; done | sort | 17 # do echo " \"//$i\","; done | sort |
| 18 | 18 |
| 19 source_set("browser_tests_filters") { | 19 source_set("browser_tests_filters") { |
| 20 testonly = true | 20 testonly = true |
| 21 | 21 |
| 22 data = [ | 22 data = [ |
| 23 "//testing/buildbot/filters/isolate-extensions.browser_tests.filter", | 23 "//testing/buildbot/filters/isolate-extensions.browser_tests.filter", |
| 24 "//testing/buildbot/filters/mash.browser_tests.filter", | 24 "//testing/buildbot/filters/mash.browser_tests.filter", |
| 25 "//testing/buildbot/filters/mojo.fyi.browser_tests.filter", | 25 "//testing/buildbot/filters/mojo.fyi.browser_tests.filter", |
| 26 "//testing/buildbot/filters/mojo.fyi.mus.browser_tests.filter", | 26 "//testing/buildbot/filters/mojo.fyi.mus.browser_tests.filter", |
| 27 "//testing/buildbot/filters/site-per-process.browser_tests.filter", | 27 "//testing/buildbot/filters/site-per-process.browser_tests.filter", |
| 28 "//testing/buildbot/filters/tab-capture-end2end-tests.browser_tests.filter", | |
| 29 ] | 28 ] |
| 30 } | 29 } |
| 31 | 30 |
| 32 source_set("content_browsertests_filters") { | 31 source_set("content_browsertests_filters") { |
| 33 testonly = true | 32 testonly = true |
| 34 | 33 |
| 35 data = [ | 34 data = [ |
| 36 "//testing/buildbot/filters/cast-linux.content_browsertests.filter", | 35 "//testing/buildbot/filters/cast-linux.content_browsertests.filter", |
| 37 "//testing/buildbot/filters/isolate-extensions.content_browsertests.filter", | 36 "//testing/buildbot/filters/isolate-extensions.content_browsertests.filter", |
| 38 "//testing/buildbot/filters/site-per-process.content_browsertests.filter", | 37 "//testing/buildbot/filters/site-per-process.content_browsertests.filter", |
| 39 ] | 38 ] |
| 40 } | 39 } |
| 41 | 40 |
| 42 source_set("interactive_ui_tests_filters") { | 41 source_set("interactive_ui_tests_filters") { |
| 43 testonly = true | 42 testonly = true |
| 44 | 43 |
| 45 data = [ | 44 data = [ |
| 46 "//testing/buildbot/filters/site-per-process.interactive_ui_tests.filter", | 45 "//testing/buildbot/filters/site-per-process.interactive_ui_tests.filter", |
| 47 ] | 46 ] |
| 48 } | 47 } |
| 49 | 48 |
| 50 source_set("ash_unittests_filters") { | 49 source_set("ash_unittests_filters") { |
| 51 testonly = true | 50 testonly = true |
| 52 | 51 |
| 53 data = [ | 52 data = [ |
| 54 "//testing/buildbot/filters/ash_mus_unittests.filter", | 53 "//testing/buildbot/filters/ash_mus_unittests.filter", |
| 55 ] | 54 ] |
| 56 } | 55 } |
| OLD | NEW |