blob: 54d6bbec1c51ffd959767157cc9ae8fffcf93271 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001# Copyright 2013 the V8 project authors. All rights reserved.
Ben Murdoch3ef787d2012-04-12 10:51:47 +01002# 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
Ben Murdochb8a8cc12014-11-26 15:28:44 +000028# 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
Ben Murdoch3ef787d2012-04-12 10:51:47 +010034{
Ben Murdochb8a8cc12014-11-26 15:28:44 +000035 'WATCHLIST_DEFINITIONS': {
Ben Murdoch014dc512016-03-22 12:00:34 +000036 'snapshot': {
37 'filepath': 'src/snapshot/',
38 },
Rubin Xu7314a9f2021-02-10 00:04:48 +000039 'devtools': {
40 'filepath': 'src/debug/' \
41 '|src/inspector/' \
42 '|src/profiler/' \
43 '|src/libsampler/' \
44 '|src/tracing/' \
45 '|include/js_protocol.pdl' \
46 '|include/v8-inspector*\.h',
Ben Murdoch014dc512016-03-22 12:00:34 +000047 },
48 'interpreter': {
Ben Murdoch109988c2016-05-18 11:27:45 +010049 'filepath': 'src/interpreter/' \
Ben Murdoch109988c2016-05-18 11:27:45 +010050 '|src/compiler/bytecode' \
51 '|test/cctest/interpreter/' \
52 '|test/unittests/interpreter/',
Ben Murdoch014dc512016-03-22 12:00:34 +000053 },
54 'feature_shipping_status': {
Rubin Xu7314a9f2021-02-10 00:04:48 +000055 'filepath': 'src/flags/flag-definitions.h',
Ben Murdoch014dc512016-03-22 12:00:34 +000056 },
57 'gc_changes': {
58 'filepath': 'src/heap/',
59 },
Ben Murdoch109988c2016-05-18 11:27:45 +010060 'arm': {
61 'filepath': '/arm/',
Ben Murdoch014dc512016-03-22 12:00:34 +000062 },
Rubin Xu7314a9f2021-02-10 00:04:48 +000063 'csa': {
64 'filepath': 'src/codegen/code-stub-assembler\.(cc|h)$' \
65 '|src/builtins/.*-gen.(cc|h)$',
66 },
Ben Murdoch109988c2016-05-18 11:27:45 +010067 'ia32': {
68 'filepath': '/ia32/',
Ben Murdochbcf72ee2016-08-08 18:44:38 +010069 },
70 'merges': {
71 'filepath': '.',
Rubin Xu7314a9f2021-02-10 00:04:48 +000072 },
73 'wasm': {
74 'filepath': 'src/wasm/' \
75 '|src/compiler/wasm',
76 },
77 'value_serializer': {
78 'filepath': 'src/value-serializer',
79 },
80 'parser': {
81 'filepath': 'src/ast/' \
82 '|src/parsing/',
83 },
84 'torque': {
85 'filepath': '.*\.tq$',
86 },
87 'tracing': {
88 'filepath': 'src/tracing/',
89 },
Ben Murdochb8a8cc12014-11-26 15:28:44 +000090 },
91
92 'WATCHLISTS': {
Rubin Xu7314a9f2021-02-10 00:04:48 +000093 'csa': [
94 'jgruber+watch@chromium.org',
95 ],
96 'torque': [
97 'jgruber+watch@chromium.org',
Ben Murdochb8a8cc12014-11-26 15:28:44 +000098 ],
Ben Murdoch014dc512016-03-22 12:00:34 +000099 'snapshot': [
Rubin Xu7314a9f2021-02-10 00:04:48 +0000100 'jgruber+watch@chromium.org',
Ben Murdoch014dc512016-03-22 12:00:34 +0000101 ],
Rubin Xu7314a9f2021-02-10 00:04:48 +0000102 'devtools': [
103 'devtools-reviews+v8@chromium.org',
Ben Murdoch014dc512016-03-22 12:00:34 +0000104 ],
105 'interpreter': [
106 'rmcilroy@chromium.org',
Ben Murdoch014dc512016-03-22 12:00:34 +0000107 ],
108 'feature_shipping_status': [
109 'hablich@chromium.org',
110 ],
111 'gc_changes': [
112 'hpayer@chromium.org',
Ben Murdoch014dc512016-03-22 12:00:34 +0000113 ],
Ben Murdoch109988c2016-05-18 11:27:45 +0100114 'arm': [
115 'v8-mips-ports@googlegroups.com',
116 'v8-ppc-ports@googlegroups.com',
117 ],
Ben Murdochbcf72ee2016-08-08 18:44:38 +0100118 'merges': [
119 # Only enabled on branches created with tools/release/create_release.py
120 'v8-merges@googlegroups.com',
121 ],
Rubin Xu7314a9f2021-02-10 00:04:48 +0000122 'wasm': [
123 'wasm-v8@google.com',
124 ],
125 'value_serializer': [
126 'jbroman+watch@chromium.org',
127 ],
128 'parser': [
129 'marja+watch@chromium.org',
130 ],
131 'tracing': [
132 'alph+watch@chromium.org',
133 'lpy+v8tracing@chromium.org',
134 'fmeawad@chromium.org',
135 ],
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100136 },
137}