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 16 matching lines...) Expand all Loading... |
27 }, | 27 }, |
28 'android_infra': { | 28 'android_infra': { |
29 'filepath': 'build/android/' \ | 29 'filepath': 'build/android/' \ |
30 '|testing/android/' \ | 30 '|testing/android/' \ |
31 '|tools/android/' | 31 '|tools/android/' |
32 }, | 32 }, |
33 'android_webview': { | 33 'android_webview': { |
34 'filepath': 'android_webview/', | 34 'filepath': 'android_webview/', |
35 }, | 35 }, |
36 'app_container': { | 36 'app_container': { |
37 'filepath': '.*app_window.*' | 37 'filepath': '.*app_window.*' \ |
| 38 '|.*app_current_window.*' |
38 }, | 39 }, |
39 'app_list': { | 40 'app_list': { |
40 'filepath': 'chrome/browser/ui/app_list'\ | 41 'filepath': 'chrome/browser/ui/app_list'\ |
41 '|chrome/browser/ui/ash/app_list'\ | 42 '|chrome/browser/ui/ash/app_list'\ |
42 '|chrome/browser/ui/views/app_list'\ | 43 '|chrome/browser/ui/views/app_list'\ |
43 '|ui/app_list/' | 44 '|ui/app_list/' |
44 }, | 45 }, |
45 'app_shortcuts': { | 46 'app_shortcuts': { |
46 'filepath': 'apps/app_shim/'\ | 47 'filepath': 'apps/app_shim/'\ |
47 '|chrome/browser/web_applications/'\ | 48 '|chrome/browser/web_applications/'\ |
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 'views': ['tfarina@chromium.org'], | 778 'views': ['tfarina@chromium.org'], |
778 'views_core': ['ben+watch@chromium.org'], | 779 'views_core': ['ben+watch@chromium.org'], |
779 'website_settings': ['markusheintz@chromium.org'], | 780 'website_settings': ['markusheintz@chromium.org'], |
780 'webkit': ['darin-cc@chromium.org'], | 781 'webkit': ['darin-cc@chromium.org'], |
781 'worker': ['jam@chromium.org'], | 782 'worker': ['jam@chromium.org'], |
782 'x11': ['derat+watch@chromium.org', | 783 'x11': ['derat+watch@chromium.org', |
783 'sadrul@chromium.org', | 784 'sadrul@chromium.org', |
784 'yusukes+watch@chromium.org'], | 785 'yusukes+watch@chromium.org'], |
785 }, | 786 }, |
786 } | 787 } |
OLD | NEW |