[go: nahoru, domu]

blob: 59db3d8050152a22d3c0b1692f9f5c52953ef00a [file] [log] [blame]
Yang Guofbdd3f32019-10-28 14:21:431# 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 Lewis29062222021-07-07 08:56:506# Refer: https://chromium.googlesource.com/chromium/src/+/main/docs/infra/watchlists.md
Yang Guofbdd3f32019-10-28 14:21:437
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 Guo805eb482019-10-29 08:36:4416 'chromedriver': {
17 'filepath': 'front_end/emulated_devices/module.json',
18 },
Connor Clark2d21a8f2020-12-01 16:02:0219 'lighthouse': {
20 'filepath': '[Ll]ighthouse',
21 },
Tim van der Lippe03e268e2019-11-27 11:50:3522 'third_party': {
23 'filepath': 'front_end/third_party/',
24 },
Yang Guofbdd3f32019-10-28 14:21:4325 },
26
27 'WATCHLISTS': {
28 'all': ['devtools-reviews+devtools@chromium.org'],
Yang Guo805eb482019-10-29 08:36:4429 'chromedriver': ['johnchen+watch@chromium.org'],
Connor Clark2d21a8f2020-12-01 16:02:0230 'lighthouse': ['lighthouse-eng+devtools-cl@google.com'],
Tim van der Lippe03e268e2019-11-27 11:50:3531 'third_party': ['devtools-reviews+third_party@chromium.org'],
Yang Guofbdd3f32019-10-28 14:21:4332 },
33}