UNPKG

961 BPlain TextView Raw
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
6# Refer: https://chromium.googlesource.com/chromium/src/+/main/docs/infra/watchlists.md
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 },
16 'chromedriver': {
17 'filepath': 'front_end/emulated_devices/',
18 },
19 'lighthouse': {
20 'filepath': '[Ll]ighthouse',
21 },
22 'third_party': {
23 'filepath': 'front_end/third_party/',
24 },
25 },
26
27 'WATCHLISTS': {
28 'all': ['devtools-reviews+devtools@chromium.org'],
29 'chromedriver': ['johnchen+watch@chromium.org'],
30 'lighthouse': ['lighthouse-eng+devtools-cl@google.com'],
31 'third_party': ['devtools-reviews+third_party@chromium.org'],
32 },
33}