Yang Guo | fbdd3f3 | 2019-10-28 14:21:43 | [diff] [blame] | 1 | # Copyright (c) 2019 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 | # Watchlist Rules |
Paul Lewis | 2906222 | 2021-07-07 08:56:50 | [diff] [blame] | 6 | # Refer: https://chromium.googlesource.com/chromium/src/+/main/docs/infra/watchlists.md |
Yang Guo | fbdd3f3 | 2019-10-28 14:21:43 | [diff] [blame] | 7 | |
| 8 | # IMPORTANT: The regular expression filepath is tested against each path using |
| 9 | # re.search, so it is not usually necessary to add .*. |
| 10 | |
| 11 | { |
| 12 | 'WATCHLIST_DEFINITIONS': { |
| 13 | 'all': { |
| 14 | 'filepath': '.', |
| 15 | }, |
Yang Guo | 805eb48 | 2019-10-29 08:36:44 | [diff] [blame] | 16 | 'chromedriver': { |
Tim van der Lippe | 4fa7c59 | 2021-11-17 15:52:58 | [diff] [blame] | 17 | 'filepath': 'front_end/emulated_devices/', |
Yang Guo | 805eb48 | 2019-10-29 08:36:44 | [diff] [blame] | 18 | }, |
Connor Clark | 2d21a8f | 2020-12-01 16:02:02 | [diff] [blame] | 19 | 'lighthouse': { |
| 20 | 'filepath': '[Ll]ighthouse', |
| 21 | }, |
Tim van der Lippe | 03e268e | 2019-11-27 11:50:35 | [diff] [blame] | 22 | 'third_party': { |
| 23 | 'filepath': 'front_end/third_party/', |
| 24 | }, |
Al Muthanna Athamina | 7a7ab97 | 2023-02-06 09:45:12 | [diff] [blame] | 25 | 'tests': { |
| 26 | 'filepath': 'test/', |
| 27 | }, |
Yang Guo | fbdd3f3 | 2019-10-28 14:21:43 | [diff] [blame] | 28 | }, |
| 29 | |
| 30 | 'WATCHLISTS': { |
| 31 | 'all': ['[email protected]'], |
Yang Guo | 805eb48 | 2019-10-29 08:36:44 | [diff] [blame] | 32 | 'chromedriver': ['[email protected]'], |
Connor Clark | 2d21a8f | 2020-12-01 16:02:02 | [diff] [blame] | 33 | 'lighthouse': ['[email protected]'], |
Tim van der Lippe | 03e268e | 2019-11-27 11:50:35 | [diff] [blame] | 34 | 'third_party': ['[email protected]'], |
Al Muthanna Athamina | 7a7ab97 | 2023-02-06 09:45:12 | [diff] [blame] | 35 | 'tests': ['[email protected]'], |
Yang Guo | fbdd3f3 | 2019-10-28 14:21:43 | [diff] [blame] | 36 | }, |
| 37 | } |