[go: nahoru, domu]

blob: 638e1a4800b4ee78d098e97a63f23c57c9ea3f3b [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': {
Tim van der Lippe4fa7c592021-11-17 15:52:5817 'filepath': 'front_end/emulated_devices/',
Yang Guo805eb482019-10-29 08:36:4418 },
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 },
Al Muthanna Athamina7a7ab972023-02-06 09:45:1225 'tests': {
26 'filepath': 'test/',
27 },
Yang Guofbdd3f32019-10-28 14:21:4328 },
29
30 'WATCHLISTS': {
31 'all': ['devtools-reviews+devtools@chromium.org'],
Yang Guo805eb482019-10-29 08:36:4432 'chromedriver': ['johnchen+watch@chromium.org'],
Connor Clark2d21a8f2020-12-01 16:02:0233 'lighthouse': ['lighthouse-eng+devtools-cl@google.com'],
Tim van der Lippe03e268e2019-11-27 11:50:3534 'third_party': ['devtools-reviews+third_party@chromium.org'],
Al Muthanna Athamina7a7ab972023-02-06 09:45:1235 'tests': ['almuthanna+watch@chromium.org'],
Yang Guofbdd3f32019-10-28 14:21:4336 },
37}