| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 'groby+watch@chromium.org', | 622 'groby+watch@chromium.org', |
| 622 'rouslan+watch@chromium.org'], | 623 'rouslan+watch@chromium.org'], |
| 623 'website_settings': ['markusheintz@chromium.org'], | 624 'website_settings': ['markusheintz@chromium.org'], |
| 624 'webkit': ['darin-cc@chromium.org'], | 625 'webkit': ['darin-cc@chromium.org'], |
| 625 'worker': ['jam@chromium.org'], | 626 'worker': ['jam@chromium.org'], |
| 626 'x11': ['derat+watch@chromium.org', | 627 'x11': ['derat+watch@chromium.org', |
| 627 'sadrul@chromium.org', | 628 'sadrul@chromium.org', |
| 628 'yusukes+watch@chromium.org'], | 629 'yusukes+watch@chromium.org'], |
| 629 }, | 630 }, |
| 630 } | 631 } |
| OLD | NEW |