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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 'filepath': 'chrome/browser/autofill/|'\ | 43 'filepath': 'chrome/browser/autofill/|'\ |
44 'chrome/browser/resources/options/autofill_|'\ | 44 'chrome/browser/resources/options/autofill_|'\ |
45 'chrome/browser/sync/glue/autofill_|'\ | 45 'chrome/browser/sync/glue/autofill_|'\ |
46 'chrome/browser/ui/webui/options/autofill_|'\ | 46 'chrome/browser/ui/webui/options/autofill_|'\ |
47 'chrome/renderer/autofill/|'\ | 47 'chrome/renderer/autofill/|'\ |
48 'chrome/test/data/autofill/|'\ | 48 'chrome/test/data/autofill/|'\ |
49 'chrome/test/data/autofill/heuristics/input/|'\ | 49 'chrome/test/data/autofill/heuristics/input/|'\ |
50 'chrome/test/data/autofill/heuristics/output/|'\ | 50 'chrome/test/data/autofill/heuristics/output/|'\ |
51 'chrome/test/data/autofill/merge/input/|'\ | 51 'chrome/test/data/autofill/merge/input/|'\ |
52 'chrome/test/data/autofill/merge/output/|'\ | 52 'chrome/test/data/autofill/merge/output/|'\ |
53 'webkit/forms/', | 53 'content/public/common/|'\ |
54 'content/public/renderer/', | |
stuartmorgan
2012/10/02 12:17:51
I suspect that people watching autofill don't want
Ilya Sherman
2012/10/02 20:12:29
I think these lines could just be:
content/public/
blundell
2012/10/03 15:06:07
Great, thanks. Done.
On 2012/10/02 20:12:29, Ilya
| |
54 }, | 55 }, |
55 'automation': { | 56 'automation': { |
56 'filepath': 'chrome/browser/automation/|chrome/test/automation/', | 57 'filepath': 'chrome/browser/automation/|chrome/test/automation/', |
57 }, | 58 }, |
58 'base': { | 59 'base': { |
59 'filepath': '^base/', | 60 'filepath': '^base/', |
60 }, | 61 }, |
61 'base_allocator': { | 62 'base_allocator': { |
62 'filepath': '^base/allocator', | 63 'filepath': '^base/allocator', |
63 }, | 64 }, |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
580 'groby+watch@chromium.org', | 581 'groby+watch@chromium.org', |
581 'rouslan+watch@chromium.org'], | 582 'rouslan+watch@chromium.org'], |
582 'website_settings': ['markusheintz@chromium.org'], | 583 'website_settings': ['markusheintz@chromium.org'], |
583 'webkit': ['darin-cc@chromium.org'], | 584 'webkit': ['darin-cc@chromium.org'], |
584 'worker': ['jam@chromium.org'], | 585 'worker': ['jam@chromium.org'], |
585 'x11': ['derat+watch@chromium.org', | 586 'x11': ['derat+watch@chromium.org', |
586 'sadrul@chromium.org', | 587 'sadrul@chromium.org', |
587 'yusukes+watch@chromium.org'], | 588 'yusukes+watch@chromium.org'], |
588 }, | 589 }, |
589 } | 590 } |
OLD | NEW |