| 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. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| 40 source_set("interactive_ui_tests_filters") { | 40 source_set("interactive_ui_tests_filters") { |
| 41 testonly = true | 41 testonly = true |
| 42 | 42 |
| 43 data = [ | 43 data = [ |
| 44 "//testing/buildbot/filters/site-per-process.interactive_ui_tests.filter", | 44 "//testing/buildbot/filters/site-per-process.interactive_ui_tests.filter", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| 47 |
| 48 source_set("ash_unittests_filters") { |
| 49 testonly = true |
| 50 |
| 51 data = [ |
| 52 "//testing/buildbot/filters/ash_mus_unittests.filter", |
| 53 ] |
| 54 } |
| OLD | NEW |