OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 'fullscreen_controller': { | 192 'fullscreen_controller': { |
193 'filepath': 'fullscreen_controller', | 193 'filepath': 'fullscreen_controller', |
194 }, | 194 }, |
195 'gfx_image': { | 195 'gfx_image': { |
196 'filepath': 'ui/gfx/image/', | 196 'filepath': 'ui/gfx/image/', |
197 }, | 197 }, |
198 'gfx_geometry': { | 198 'gfx_geometry': { |
199 'filepath': 'ui/gfx/rect|'\ | 199 'filepath': 'ui/gfx/rect|'\ |
200 'ui/gfx/point|'\ | 200 'ui/gfx/point|'\ |
201 'ui/gfx/size|'\ | 201 'ui/gfx/size|'\ |
202 'ui/gfx/transform', | 202 'ui/gfx/transform|'\ |
| 203 'ui/gfx/vector2d', |
203 }, | 204 }, |
204 'gpu': { | 205 'gpu': { |
205 'filepath': 'gpu/', | 206 'filepath': 'gpu/', |
206 }, | 207 }, |
207 'history_ui': { | 208 'history_ui': { |
208 'filepath': 'chrome/browser/resources/history', | 209 'filepath': 'chrome/browser/resources/history', |
209 }, | 210 }, |
210 'i18n': { | 211 'i18n': { |
211 'filepath': 'base/i18n/|base/string|l10n|icu|'\ | 212 'filepath': 'base/i18n/|base/string|l10n|icu|'\ |
212 'locale_settings|encoding', | 213 'locale_settings|encoding', |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 'groby+watch@chromium.org', | 619 'groby+watch@chromium.org', |
619 'rouslan+watch@chromium.org'], | 620 'rouslan+watch@chromium.org'], |
620 'website_settings': ['markusheintz@chromium.org'], | 621 'website_settings': ['markusheintz@chromium.org'], |
621 'webkit': ['darin-cc@chromium.org'], | 622 'webkit': ['darin-cc@chromium.org'], |
622 'worker': ['jam@chromium.org'], | 623 'worker': ['jam@chromium.org'], |
623 'x11': ['derat+watch@chromium.org', | 624 'x11': ['derat+watch@chromium.org', |
624 'sadrul@chromium.org', | 625 'sadrul@chromium.org', |
625 'yusukes+watch@chromium.org'], | 626 'yusukes+watch@chromium.org'], |
626 }, | 627 }, |
627 } | 628 } |
OLD | NEW |