blob: 389558539cd3d6f0f692f9df06cfbd033c678f24 [file] [log] [blame]
Yang Guofbdd3f32019-10-28 15:21:43 +01001# 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/+/master/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 },
Yang Guo805eb482019-10-29 09:36:44 +010016 'chromedriver': {
17 'filepath': 'front_end/emulated_devices/module.json',
18 },
Yang Guofbdd3f32019-10-28 15:21:43 +010019 },
20
21 'WATCHLISTS': {
22 'all': ['devtools-reviews+devtools@chromium.org'],
Yang Guo805eb482019-10-29 09:36:44 +010023 'chromedriver': ['johnchen+watch@chromium.org'],
Yang Guofbdd3f32019-10-28 15:21:43 +010024 },
25}