WATCHLISTS 651 Bytes
Newer Older
cmp@chromium.org's avatar
cmp@chromium.org committed
1
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 3 4 5 6 7 8 9 10
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Watchlist Rules
# Refer: http://dev.chromium.org/developers/contributing-code/watchlists

{

  'WATCHLIST_DEFINITIONS': {
11 12 13
    'git_cl.py': {
      'filepath': 'git_cl.py',
    },
14 15 16 17 18 19 20 21 22
    'this_file': {
      'filepath': '^WATCHLISTS$',
    },
    'depot_tools': {
      'filepath': '.+',
    },
  },

  'WATCHLISTS': {
23
    'this_file': [],
24 25 26
    'git_cl.py': [
      'tandrii+omg_git_cl@chromium.org',
    ],
27 28 29
    'depot_tools': [
      'iannucci+depot_tools@chromium.org',
    ],
30 31 32
  },

}