WATCHLISTS 4.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
# Copyright 2013 the V8 project authors. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
#       copyright notice, this list of conditions and the following
#       disclaimer in the documentation and/or other materials provided
#       with the distribution.
#     * Neither the name of Google Inc. nor the names of its
#       contributors may be used to endorse or promote products derived
#       from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

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

# IMPORTANT: The regular expression filepath is tested against each path using
# re.search, so it is not usually necessary to add .*.

{
  'WATCHLIST_DEFINITIONS': {
36 37 38
    'api': {
      'filepath': 'include/',
    },
39 40 41
    'snapshot': {
      'filepath': 'src/snapshot/',
    },
42 43 44 45 46 47 48 49
    'devtools': {
      'filepath': 'src/debug/' \
                  '|src/inspector/' \
                  '|src/profiler/' \
                  '|src/libsampler/' \
                  '|src/tracing/' \
                  '|include/js_protocol.pdl' \
                  '|include/v8-inspector*\.h',
50
    },
51
    'baseline': {
52
      'filepath': 'src/baseline/',
53
    },
54
    'feature_shipping_status': {
55
      'filepath': 'src/flags/flag-definitions.h',
56
    },
57
    'heap_changes': {
58 59
      'filepath': 'src/heap/',
    },
60 61 62
    'arm': {
      'filepath': '/arm/',
    },
63 64
    'merges': {
      'filepath': '.',
65
    },
mtrofin's avatar
mtrofin committed
66 67 68 69
    'wasm': {
      'filepath': 'src/wasm/' \
                  '|src/compiler/wasm',
    },
70 71
    'value_serializer': {
      'filepath': 'src/value-serializer',
72
    },
Jakob Gruber's avatar
Jakob Gruber committed
73 74 75
    'maglev': {
      'filepath': 'src/maglev/',
    },
76 77 78 79
    'parser': {
      'filepath': 'src/ast/' \
                  '|src/parsing/',
    },
80 81 82
    'tracing': {
      'filepath': 'src/tracing/',
    },
83 84 85 86
    'ieee754': {
      'filepath': 'src/base/ieee754\.(cc|h)' \
                  '|src/base/overflowing-math.h' \
                  '|LICENSE.fdlibm',
87 88 89
    },
    'regexp': {
      'filepath': 'src/.*regexp',
90 91 92 93 94
    },
    'bazel': {
      'filepath': 'BUILD.gn' \
                  '|BUILD.bazel' \
                  '|WORKSPACE' \
95
                  '|bazel/',
96
    },
97 98 99 100
    'cppgc': {
      'filepath': 'src/heap/cppgc/' \
                  '|src/heap/cppgc-js/' \
                  '|include/cppgc/' \
101 102
                  '|test/unittests/heap/cppgc/' \
                  '|test/unittests/heap/cppgc-js/',
103
    },
104 105 106
  },

  'WATCHLISTS': {
Jakob Gruber's avatar
Jakob Gruber committed
107
    'maglev': [
108
      'jgruber+watch@chromium.org',
Jakob Gruber's avatar
Jakob Gruber committed
109 110
      'leszeks+watch@chromium.org',
      'verwaest+watch@chromium.org',
111
    ],
112
    'snapshot': [
113
      'jgruber+watch@chromium.org',
114
    ],
115 116
    'devtools': [
      'devtools-reviews+v8@chromium.org',
117
    ],
118 119 120 121
    'baseline': [
      'leszeks+watch@chromium.org',
      'verwaest+watch@chromium.org',
    ],
122 123 124
    'feature_shipping_status': [
      'hablich@chromium.org',
    ],
125
    'heap_changes': [
126
      'hpayer@chromium.org',
127
      'mlippautz+watch@chromium.org',
128
    ],
129 130 131 132
    'arm': [
      'v8-mips-ports@googlegroups.com',
      'v8-ppc-ports@googlegroups.com',
    ],
133 134 135 136
    'merges': [
      # Only enabled on branches created with tools/release/create_release.py
      # 'v8-merges@googlegroups.com',
    ],
mtrofin's avatar
mtrofin committed
137 138 139
    'wasm': [
      'wasm-v8@google.com',
    ],
140 141 142
    'value_serializer': [
      'jbroman+watch@chromium.org',
    ],
143 144
    'parser': [
      'marja+watch@chromium.org',
145 146
    ],
    'tracing': [
147
      'alph+watch@chromium.org',
148 149
      'lpy+v8tracing@chromium.org',
      'fmeawad@chromium.org',
150
      'cbruni+watch@chromium.org',
151
    ],
152 153
    'ieee754': [
      'rtoy+watch@chromium.org',
154
      'hongchan+watch@chromium.org',
155
    ],
156 157
    'regexp': [
      'jgruber+watch@chromium.org',
158 159 160 161
      'pthier+watch@chromium.org',
    ],
    'bazel': [
      'victorgomes+watch@chromium.org',
162
    ],
163 164
    'api': [
      'cbruni+watch@chromium.org',
165
    ],
166 167 168
    'cppgc': [
      'oilpan-reviews+v8@chromium.org',
    ],
169 170
  },
}