| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Watchlist Rules | 5 # Watchlist Rules |
| 6 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists | 6 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists |
| 7 | 7 |
| 8 # IMPORTANT: The regular expression filepath is tested against each path using | 8 # IMPORTANT: The regular expression filepath is tested against each path using |
| 9 # re.search, so it is not usually necessary to add .*. | 9 # re.search, so it is not usually necessary to add .*. |
| 10 | 10 |
| 11 { | 11 { |
| 12 'WATCHLIST_DEFINITIONS': { | 12 'WATCHLIST_DEFINITIONS': { |
| 13 'animations': { |
| 14 'filepath': 'Source/WebCore/page/animation' \ |
| 15 '|LayoutTests/fast/animation' \ |
| 16 '|LayoutTests/animation', |
| 17 }, |
| 13 'test_runner': { | 18 'test_runner': { |
| 14 'filepath': 'Tools/DumpRenderTree/chromium/TestRunner', | 19 'filepath': 'Tools/DumpRenderTree/chromium/TestRunner', |
| 15 }, | 20 }, |
| 16 'css': { | 21 'css': { |
| 17 'filepath': 'Source/WebCore/css', | 22 'filepath': 'Source/WebCore/css', |
| 18 }, | 23 }, |
| 19 'platform_graphics': { | 24 'platform_graphics': { |
| 20 'filepath': 'Source/WebCore/platform/graphics', | 25 'filepath': 'Source/WebCore/platform/graphics', |
| 21 }, | 26 }, |
| 22 'SVG': { | 27 'SVG': { |
| 23 'filepath': 'Source/WebCore/svg|Source/WebCore/rendering/svg', | 28 'filepath': 'Source/WebCore/svg|Source/WebCore/rendering/svg', |
| 24 }, | 29 }, |
| 25 }, | 30 }, |
| 26 | 31 |
| 27 'WATCHLISTS': { | 32 'WATCHLISTS': { |
| 33 'animations': ['dstockwell@chromium.org', |
| 34 'steveblock@chromium.org', |
| 35 'shans@chromium.org'], |
| 28 'test_runner': [ 'jochen+watch@chromium.org' ], | 36 'test_runner': [ 'jochen+watch@chromium.org' ], |
| 29 'platform_graphics': [ 'schenney@chromium.org' ], | 37 'platform_graphics': [ 'schenney@chromium.org' ], |
| 30 'SVG': [ 'schenney@chromium.org', 'pdr@google.com', 'fmalita@chromium.org' ]
, | 38 'SVG': [ 'schenney@chromium.org', 'pdr@google.com', 'fmalita@chromium.org' ]
, |
| 31 'css': [ 'darktears31@gmail.com' ], | 39 'css': [ 'darktears31@gmail.com' ], |
| 32 }, | 40 }, |
| 33 } | 41 } |
| OLD | NEW |