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 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 }, | 124 }, |
125 'platform_graphics': { | 125 'platform_graphics': { |
126 'filepath': 'Source/platform/fonts' \ | 126 'filepath': 'Source/platform/fonts' \ |
127 '|Source/platform/geometry' \ | 127 '|Source/platform/geometry' \ |
128 '|Source/platform/graphics' | 128 '|Source/platform/graphics' |
129 }, | 129 }, |
130 'platform': { | 130 'platform': { |
131 'filepath': 'Source/platform' | 131 'filepath': 'Source/platform' |
132 }, | 132 }, |
133 'svg': { | 133 'svg': { |
134 'filepath': 'Source/core/svg|Source/core/rendering/svg', | 134 'filepath': 'Source/core/svg|Source/core/layout/svg', |
135 }, | 135 }, |
136 'indexed_db': { | 136 'indexed_db': { |
137 'filepath': 'Source/modules/indexeddb/' \ | 137 'filepath': 'Source/modules/indexeddb/' \ |
138 '|Source/web/.*IDB' \ | 138 '|Source/web/.*IDB' \ |
139 '|LayoutTests/storage/indexeddb' \ | 139 '|LayoutTests/storage/indexeddb' \ |
140 '|public/platform/.*IDB' | 140 '|public/platform/.*IDB' |
141 }, | 141 }, |
142 'layout': { | 142 'layout': { |
143 'filepath': 'Source/core/layout' \ | 143 'filepath': 'Source/core/layout' \ |
144 '|Source/core/rendering' | 144 '|Source/core/rendering' |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 'battery_status': [ 'timvolodine@chromium.org', | 447 'battery_status': [ 'timvolodine@chromium.org', |
448 'mlamouri+watch-blink@chromium.org' ], | 448 'mlamouri+watch-blink@chromium.org' ], |
449 'out_of_process_frames': [ 'dcheng@chromium.org', | 449 'out_of_process_frames': [ 'dcheng@chromium.org', |
450 'mlamouri+watch-blink@chromium.org' ], | 450 'mlamouri+watch-blink@chromium.org' ], |
451 'device_light': [ 'timvolodine@chromium.org', | 451 'device_light': [ 'timvolodine@chromium.org', |
452 'mlamouri+watch-blink@chromium.org' ], | 452 'mlamouri+watch-blink@chromium.org' ], |
453 'websockets': [ 'tyoshino+watch@chromium.org', 'yhirano+watch@chromium.org'
], | 453 'websockets': [ 'tyoshino+watch@chromium.org', 'yhirano+watch@chromium.org'
], |
454 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], | 454 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], |
455 }, | 455 }, |
456 } | 456 } |
OLD | NEW |