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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'base_memory': { | 58 'base_memory': { |
59 'filepath': '^base/memory', | 59 'filepath': '^base/memory', |
60 }, | 60 }, |
61 'browser': { | 61 'browser': { |
62 'filepath': 'chrome/browser/', | 62 'filepath': 'chrome/browser/', |
63 }, | 63 }, |
64 'browser_chromeos': { | 64 'browser_chromeos': { |
65 'filepath': 'chrome/browser/chromeos/', | 65 'filepath': 'chrome/browser/chromeos/', |
66 }, | 66 }, |
67 'browser_components': { | 67 'browser_components': { |
68 'filepath': 'chrome/browser/autofill/', | 68 'filepath': 'chrome/browser/autofill/|chrome/browser/history/', |
69 }, | 69 }, |
70 'browser_compositor': { | 70 'browser_compositor': { |
71 'filepath': 'ui/compositor/' | 71 'filepath': 'ui/compositor/' |
72 }, | 72 }, |
73 'browser_main': { | 73 'browser_main': { |
74 'filepath': 'chrome/browser/browser_main.cc', | 74 'filepath': 'chrome/browser/browser_main.cc', |
75 }, | 75 }, |
76 'browser_resources': { | 76 'browser_resources': { |
77 'filepath': 'chrome/browser/resources/', | 77 'filepath': 'chrome/browser/resources/', |
78 }, | 78 }, |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 'smckay+watch@chromium.org', | 558 'smckay+watch@chromium.org', |
559 'groby+watch@chromium.org'], | 559 'groby+watch@chromium.org'], |
560 'website_settings': ['markusheintz@chromium.org'], | 560 'website_settings': ['markusheintz@chromium.org'], |
561 'webkit': ['darin-cc@chromium.org'], | 561 'webkit': ['darin-cc@chromium.org'], |
562 'worker': ['jam@chromium.org'], | 562 'worker': ['jam@chromium.org'], |
563 'x11': ['derat+watch@chromium.org', | 563 'x11': ['derat+watch@chromium.org', |
564 'sadrul@chromium.org', | 564 'sadrul@chromium.org', |
565 'yusukes+watch@chromium.org'], | 565 'yusukes+watch@chromium.org'], |
566 }, | 566 }, |
567 } | 567 } |
OLD | NEW |