Upload upstream chromium 94.0.4606.31
[platform/framework/web/chromium-efl.git] / v8 / WATCHLISTS
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     'interpreter': {
52       'filepath': 'src/interpreter/' \
53                   '|src/compiler/bytecode' \
54                   '|test/cctest/interpreter/' \
55                   '|test/unittests/interpreter/',
56     },
57     'baseline': {
58       'filepath': 'src/baseline/',
59     },
60     'feature_shipping_status': {
61       'filepath': 'src/flags/flag-definitions.h',
62     },
63     'gc_changes': {
64       'filepath': 'src/heap/',
65     },
66     'arm': {
67       'filepath': '/arm/',
68     },
69     'csa': {
70       'filepath': 'src/codegen/code-stub-assembler\.(cc|h)$' \
71                   '|src/builtins/.*-gen.(cc|h)$',
72     },
73     'merges': {
74       'filepath': '.',
75     },
76     'wasm': {
77       'filepath': 'src/wasm/' \
78                   '|src/compiler/wasm',
79     },
80     'value_serializer': {
81       'filepath': 'src/value-serializer',
82     },
83     'parser': {
84       'filepath': 'src/ast/' \
85                   '|src/parsing/',
86     },
87     'torque': {
88       'filepath': '.*\.tq$',
89     },
90     'tracing': {
91       'filepath': 'src/tracing/',
92     },
93     'ieee754': {
94       'filepath': 'src/base/ieee754\.(cc|h)' \
95                   '|src/base/overflowing-math.h' \
96                   '|LICENSE.fdlibm',
97     },
98     'regexp': {
99       'filepath': 'src/.*regexp',
100     },
101     'bazel': {
102       'filepath': 'BUILD.gn' \
103                   '|BUILD.bazel' \
104                   '|WORKSPACE' \
105                   '|bazel/',
106     },
107   },
108
109   'WATCHLISTS': {
110     'csa': [
111       'jgruber+watch@chromium.org',
112     ],
113     'torque': [
114       'jgruber+watch@chromium.org',
115     ],
116     'snapshot': [
117       'jgruber+watch@chromium.org',
118     ],
119     'devtools': [
120       'devtools-reviews+v8@chromium.org',
121     ],
122     'interpreter': [
123       'rmcilroy@chromium.org',
124     ],
125     'baseline': [
126       'leszeks+watch@chromium.org',
127       'verwaest+watch@chromium.org',
128     ],
129     'feature_shipping_status': [
130       'hablich@chromium.org',
131     ],
132     'gc_changes': [
133       'hpayer@chromium.org',
134     ],
135     'arm': [
136       'v8-mips-ports@googlegroups.com',
137       'v8-ppc-ports@googlegroups.com',
138     ],
139     'merges': [
140       # Only enabled on branches created with tools/release/create_release.py
141       'v8-merges@googlegroups.com',
142     ],
143     'wasm': [
144       'wasm-v8@google.com',
145     ],
146     'value_serializer': [
147       'jbroman+watch@chromium.org',
148     ],
149     'parser': [
150       'marja+watch@chromium.org',
151     ],
152     'tracing': [
153       'alph+watch@chromium.org',
154       'lpy+v8tracing@chromium.org',
155       'fmeawad@chromium.org',
156       'cbruni+watch@chromium.org',
157     ],
158     'ieee754': [
159       'rtoy+watch@chromium.org',
160       'hongchan+watch@chromium.org',
161     ],
162     'regexp': [
163       'jgruber+watch@chromium.org',
164       'pthier+watch@chromium.org',
165     ],
166     'bazel': [
167       'victorgomes+watch@chromium.org',
168     ],
169     'api': [
170       'cbruni+watch@chromium.org',
171     ],
172   },
173 }