| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 'base_memory': { | 61 'base_memory': { |
| 62 'filepath': '^base/memory', | 62 'filepath': '^base/memory', |
| 63 }, | 63 }, |
| 64 'browser': { | 64 'browser': { |
| 65 'filepath': 'chrome/browser/', | 65 'filepath': 'chrome/browser/', |
| 66 }, | 66 }, |
| 67 'browser_chromeos': { | 67 'browser_chromeos': { |
| 68 'filepath': 'chrome/browser/chromeos/', | 68 'filepath': 'chrome/browser/chromeos/', |
| 69 }, | 69 }, |
| 70 'browser_components': { | 70 'browser_components': { |
| 71 'filepath': 'chrome/browser/autofill/|'\ | 71 'filepath': 'chrome/browser/autofill/' \ |
| 72 'chrome/browser/history/|'\ | 72 '|chrome/browser/bookmarks/' \ |
| 73 'chrome/browser/bookmarks/|'\ | 73 '|chrome/browser/common/' \ |
| 74 'chrome/browser/favicon/', | 74 '|chrome/browser/favicon/' \ |
| 75 '|chrome/browser/history/' |
| 75 }, | 76 }, |
| 76 'browser_compositor': { | 77 'browser_compositor': { |
| 77 'filepath': 'ui/compositor/' | 78 'filepath': 'ui/compositor/' |
| 78 }, | 79 }, |
| 79 'browser_resources': { | 80 'browser_resources': { |
| 80 'filepath': 'chrome/browser/resources/', | 81 'filepath': 'chrome/browser/resources/', |
| 81 }, | 82 }, |
| 82 'browsing_data': { | 83 'browsing_data': { |
| 83 'filepath': 'chrome/browser/browsing_data/', | 84 'filepath': 'chrome/browser/browsing_data/', |
| 84 }, | 85 }, |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 'groby+watch@chromium.org', | 573 'groby+watch@chromium.org', |
| 573 'rouslan+watch@chromium.org'], | 574 'rouslan+watch@chromium.org'], |
| 574 'website_settings': ['markusheintz@chromium.org'], | 575 'website_settings': ['markusheintz@chromium.org'], |
| 575 'webkit': ['darin-cc@chromium.org'], | 576 'webkit': ['darin-cc@chromium.org'], |
| 576 'worker': ['jam@chromium.org'], | 577 'worker': ['jam@chromium.org'], |
| 577 'x11': ['derat+watch@chromium.org', | 578 'x11': ['derat+watch@chromium.org', |
| 578 'sadrul@chromium.org', | 579 'sadrul@chromium.org', |
| 579 'yusukes+watch@chromium.org'], | 580 'yusukes+watch@chromium.org'], |
| 580 }, | 581 }, |
| 581 } | 582 } |
| OLD | NEW |