mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 02:31:29 +00:00
This is for https://crrev.com/c/4633180/3#message-efdd6b642c3eadb8ee746085f2750f6077487f5d Change-Id: I4a108d9e9ec439113c215b0a7af8c815cb67da09 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/4653532 Reviewed-by: Joanna Wang <jojwang@chromium.org> Auto-Submit: Takuto Ikuta <tikuta@chromium.org> Commit-Queue: Joanna Wang <jojwang@chromium.org>
33 lines
694 B
Plaintext
Executable File
33 lines
694 B
Plaintext
Executable File
# Copyright (c) 2019 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Watchlist Rules
|
|
# Refer: https://chromium.googlesource.com/chromium/src/+/refs/heads/main/docs/infra/watchlists.md
|
|
|
|
{
|
|
|
|
'WATCHLIST_DEFINITIONS': {
|
|
'this_file': {
|
|
'filepath': '^WATCHLISTS$',
|
|
},
|
|
'depot_tools': {
|
|
'filepath': '.+',
|
|
},
|
|
'build': {
|
|
'filepath': '.*(ninja|reclient|siso).*',
|
|
},
|
|
},
|
|
|
|
'WATCHLISTS': {
|
|
'this_file': [],
|
|
'depot_tools': [
|
|
'chops-source-team-auto+depot_tools@google.com',
|
|
],
|
|
'build': [
|
|
'chrome-build-team@google.com',
|
|
],
|
|
},
|
|
|
|
}
|