OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # Sign-in logic is being componentized (moved to //components, where | 2 # Sign-in logic is being componentized (moved to //components, where |
3 # it won't depend back on //chrome), so we have restrictive DEPS and | 3 # it won't depend back on //chrome), so we have restrictive DEPS and |
4 # are trying to get the list of temporarily-allowed (!-prefixed | 4 # are trying to get the list of temporarily-allowed (!-prefixed |
5 # rules) below to zero. | 5 # rules) below to zero. |
6 "-chrome/common", | 6 "-chrome/common", |
7 "-chrome/browser", | 7 "-chrome/browser", |
8 "+chrome/browser/signin", | 8 "+chrome/browser/signin", |
9 | 9 |
10 # TODO(joi): Get this list to zero. | 10 # TODO(joi): Get this list to zero. |
11 "!chrome/browser/policy/cloud/user_policy_signin_service.h", | 11 "!chrome/browser/policy/cloud/user_policy_signin_service.h", |
12 "!chrome/browser/policy/cloud/user_policy_signin_service_factory.h", | 12 "!chrome/browser/policy/cloud/user_policy_signin_service_factory.h", |
13 "!chrome/browser/profiles/profile.h", | 13 "!chrome/browser/profiles/profile.h", |
14 "!chrome/browser/profiles/profile_dependency_manager.h", | |
15 "!chrome/browser/profiles/profile_info_cache.h", | 14 "!chrome/browser/profiles/profile_info_cache.h", |
16 "!chrome/browser/profiles/profile_io_data.h", | 15 "!chrome/browser/profiles/profile_io_data.h", |
17 "!chrome/browser/profiles/profile_keyed_service.h", | |
18 "!chrome/browser/profiles/profile_keyed_service_factory.h", | |
19 "!chrome/browser/profiles/profile_manager.h", | 16 "!chrome/browser/profiles/profile_manager.h", |
20 "!chrome/browser/sync/profile_sync_service.h", | 17 "!chrome/browser/sync/profile_sync_service.h", |
21 "!chrome/browser/sync/profile_sync_service_android.h", | 18 "!chrome/browser/sync/profile_sync_service_android.h", |
22 "!chrome/browser/sync/profile_sync_service_factory.h", | 19 "!chrome/browser/sync/profile_sync_service_factory.h", |
23 "!chrome/browser/sync/profile_sync_service_observer.h", | 20 "!chrome/browser/sync/profile_sync_service_observer.h", |
24 "!chrome/browser/sync/sync_global_error.h", | 21 "!chrome/browser/sync/sync_global_error.h", |
25 "!chrome/browser/sync/sync_prefs.h", | 22 "!chrome/browser/sync/sync_prefs.h", |
26 "!chrome/browser/ui/browser_commands.h", | 23 "!chrome/browser/ui/browser_commands.h", |
27 "!chrome/browser/ui/chrome_pages.h", | 24 "!chrome/browser/ui/chrome_pages.h", |
28 "!chrome/browser/ui/global_error/global_error.h", | 25 "!chrome/browser/ui/global_error/global_error.h", |
(...skipping 28 matching lines...) Expand all Loading... |
57 | 54 |
58 # These files are staying in //chrome so no need to limit. | 55 # These files are staying in //chrome so no need to limit. |
59 r"(chrome_signin_manager_delegate|" | 56 r"(chrome_signin_manager_delegate|" |
60 r"signin_names_io_thread.*|" | 57 r"signin_names_io_thread.*|" |
61 r"signin_manager_factory)" | 58 r"signin_manager_factory)" |
62 r"\.(h|cc)": [ | 59 r"\.(h|cc)": [ |
63 "+chrome/browser", | 60 "+chrome/browser", |
64 "+chrome/common", | 61 "+chrome/common", |
65 ], | 62 ], |
66 } | 63 } |
OLD | NEW |