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 'snapshot': { 37 'filepath': 'src/snapshot/', 38 }, 39 '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', 47 }, 48 'interpreter': { 49 'filepath': 'src/interpreter/' \ 50 '|src/compiler/bytecode' \ 51 '|test/cctest/interpreter/' \ 52 '|test/unittests/interpreter/', 53 }, 54 'feature_shipping_status': { 55 'filepath': 'src/flags/flag-definitions.h', 56 }, 57 'gc_changes': { 58 'filepath': 'src/heap/', 59 }, 60 'arm': { 61 'filepath': '/arm/', 62 }, 63 'csa': { 64 'filepath': 'src/codegen/code-stub-assembler\.(cc|h)$' \ 65 '|src/builtins/.*-gen.(cc|h)$', 66 }, 67 'ia32': { 68 'filepath': '/ia32/', 69 }, 70 'merges': { 71 'filepath': '.', 72 }, 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 }, 90 }, 91 92 'WATCHLISTS': { 93 'csa': [ 94 'jgruber+watch@chromium.org', 95 ], 96 'torque': [ 97 'jgruber+watch@chromium.org', 98 ], 99 'snapshot': [ 100 'jgruber+watch@chromium.org', 101 ], 102 'devtools': [ 103 'devtools-reviews+v8@chromium.org', 104 ], 105 'interpreter': [ 106 'rmcilroy@chromium.org', 107 ], 108 'feature_shipping_status': [ 109 'hablich@chromium.org', 110 ], 111 'gc_changes': [ 112 'hpayer@chromium.org', 113 ], 114 'arm': [ 115 'v8-mips-ports@googlegroups.com', 116 'v8-ppc-ports@googlegroups.com', 117 ], 118 'merges': [ 119 # Only enabled on branches created with tools/release/create_release.py 120 'v8-merges@googlegroups.com', 121 ], 122 '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 ], 136 }, 137} 138