• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2013 the V8 project authors. All rights reserved.
2# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6#     * Redistributions of source code must retain the above copyright
7#       notice, this list of conditions and the following disclaimer.
8#     * Redistributions in binary form must reproduce the above
9#       copyright notice, this list of conditions and the following
10#       disclaimer in the documentation and/or other materials provided
11#       with the distribution.
12#     * Neither the name of Google Inc. nor the names of its
13#       contributors may be used to endorse or promote products derived
14#       from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28# Watchlist Rules
29# Refer: http://dev.chromium.org/developers/contributing-code/watchlists
30
31# IMPORTANT: The regular expression filepath is tested against each path using
32# re.search, so it is not usually necessary to add .*.
33
34{
35  'WATCHLIST_DEFINITIONS': {
36    'api': {
37      'filepath': 'include/',
38    },
39    'snapshot': {
40      'filepath': 'src/snapshot/',
41    },
42    'devtools': {
43      'filepath': 'src/debug/' \
44                  '|src/inspector/' \
45                  '|src/profiler/' \
46                  '|src/libsampler/' \
47                  '|src/tracing/' \
48                  '|include/js_protocol.pdl' \
49                  '|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      'filepath': 'src/heap/',
59    },
60    'arm': {
61      'filepath': '/arm/',
62    },
63    'merges': {
64      'filepath': '.',
65    },
66    'wasm': {
67      'filepath': 'src/wasm/' \
68                  '|src/compiler/wasm',
69    },
70    'value_serializer': {
71      'filepath': 'src/value-serializer',
72    },
73    'maglev': {
74      'filepath': 'src/maglev/',
75    },
76    'parser': {
77      'filepath': 'src/ast/' \
78                  '|src/parsing/',
79    },
80    'tracing': {
81      'filepath': 'src/tracing/',
82    },
83    'ieee754': {
84      'filepath': 'src/base/ieee754\.(cc|h)' \
85                  '|src/base/overflowing-math.h' \
86                  '|LICENSE.fdlibm',
87    },
88    'regexp': {
89      'filepath': 'src/.*regexp',
90    },
91    'bazel': {
92      'filepath': 'BUILD.gn' \
93                  '|BUILD.bazel' \
94                  '|WORKSPACE' \
95                  '|bazel/',
96    },
97    'cppgc': {
98      'filepath': 'src/heap/cppgc/' \
99                  '|src/heap/cppgc-js/' \
100                  '|include/cppgc/' \
101                  '|test/unittests/heap/cppgc/' \
102                  '|test/unittests/heap/cppgc-js/',
103    },
104  },
105
106  'WATCHLISTS': {
107    'maglev': [
108      'jgruber+watch@chromium.org',
109      'leszeks+watch@chromium.org',
110      'verwaest+watch@chromium.org',
111    ],
112    'snapshot': [
113      'jgruber+watch@chromium.org',
114    ],
115    'devtools': [
116      'devtools-reviews+v8@chromium.org',
117    ],
118    'baseline': [
119      'leszeks+watch@chromium.org',
120      'verwaest+watch@chromium.org',
121    ],
122    'feature_shipping_status': [
123      'hablich@chromium.org',
124    ],
125    'heap_changes': [
126      'hpayer@chromium.org',
127      'mlippautz+watch@chromium.org',
128    ],
129    'arm': [
130      'v8-mips-ports@googlegroups.com',
131      'v8-ppc-ports@googlegroups.com',
132    ],
133    'merges': [
134      # Only enabled on branches created with tools/release/create_release.py
135      'v8-merges@googlegroups.com',
136    ],
137    'wasm': [
138      'wasm-v8@google.com',
139    ],
140    'value_serializer': [
141      'jbroman+watch@chromium.org',
142    ],
143    'parser': [
144      'marja+watch@chromium.org',
145    ],
146    'tracing': [
147      'alph+watch@chromium.org',
148      'lpy+v8tracing@chromium.org',
149      'fmeawad@chromium.org',
150      'cbruni+watch@chromium.org',
151    ],
152    'ieee754': [
153      'rtoy+watch@chromium.org',
154      'hongchan+watch@chromium.org',
155    ],
156    'regexp': [
157      'jgruber+watch@chromium.org',
158      'pthier+watch@chromium.org',
159    ],
160    'bazel': [
161      'victorgomes+watch@chromium.org',
162    ],
163    'api': [
164      'cbruni+watch@chromium.org',
165    ],
166    'cppgc': [
167      'oilpan-reviews+v8@chromium.org',
168    ],
169  },
170}
171