Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(618)

Side by Side Diff: chrome/browser/signin/DEPS

Issue 14367029: Introduce SigninManagerDelegate and use to eliminate CookieSettings dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge LKGR Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/signin/chrome_signin_manager_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/browser_process.h", 11 "!chrome/browser/browser_process.h",
12 "!chrome/browser/content_settings/cookie_settings.h",
13 "!chrome/browser/policy/cloud/user_policy_signin_service.h", 12 "!chrome/browser/policy/cloud/user_policy_signin_service.h",
14 "!chrome/browser/policy/cloud/user_policy_signin_service_factory.h", 13 "!chrome/browser/policy/cloud/user_policy_signin_service_factory.h",
15 "!chrome/browser/profiles/profile.h", 14 "!chrome/browser/profiles/profile.h",
16 "!chrome/browser/profiles/profile_dependency_manager.h", 15 "!chrome/browser/profiles/profile_dependency_manager.h",
17 "!chrome/browser/profiles/profile_info_cache.h", 16 "!chrome/browser/profiles/profile_info_cache.h",
18 "!chrome/browser/profiles/profile_io_data.h", 17 "!chrome/browser/profiles/profile_io_data.h",
19 "!chrome/browser/profiles/profile_keyed_service.h", 18 "!chrome/browser/profiles/profile_keyed_service.h",
20 "!chrome/browser/profiles/profile_keyed_service_factory.h", 19 "!chrome/browser/profiles/profile_keyed_service_factory.h",
21 "!chrome/browser/profiles/profile_manager.h", 20 "!chrome/browser/profiles/profile_manager.h",
22 "!chrome/browser/sync/profile_sync_service.h", 21 "!chrome/browser/sync/profile_sync_service.h",
(...skipping 16 matching lines...) Expand all
39 "!chrome/browser/webdata/web_data_service_factory.h", 38 "!chrome/browser/webdata/web_data_service_factory.h",
40 "!chrome/common/chrome_notification_types.h", 39 "!chrome/common/chrome_notification_types.h",
41 "!chrome/common/chrome_switches.h", 40 "!chrome/common/chrome_switches.h",
42 "!chrome/common/chrome_version_info.h", 41 "!chrome/common/chrome_version_info.h",
43 "!chrome/common/extensions/extension_messages.h", 42 "!chrome/common/extensions/extension_messages.h",
44 "!chrome/common/pref_names.h", 43 "!chrome/common/pref_names.h",
45 "!chrome/common/url_constants.h", 44 "!chrome/common/url_constants.h",
46 ] 45 ]
47 46
48 specific_include_rules = { 47 specific_include_rules = {
49 '.*_[a-z]*test\.cc': [ 48 r".*_[a-z]*test\.cc": [
50 # TODO(joi): Get this list to zero. 49 # TODO(joi): Get this list to zero.
51 "!chrome/browser/prefs/browser_prefs.h", 50 "!chrome/browser/prefs/browser_prefs.h",
52 "!chrome/browser/sync/profile_sync_service_mock.h", 51 "!chrome/browser/sync/profile_sync_service_mock.h",
53 "!chrome/browser/ui/browser.h", 52 "!chrome/browser/ui/browser.h",
54 "!chrome/browser/ui/singleton_tabs.h", 53 "!chrome/browser/ui/singleton_tabs.h",
55 "!chrome/browser/ui/tabs/tab_strip_model.h", 54 "!chrome/browser/ui/tabs/tab_strip_model.h",
56 "!chrome/browser/ui/webui/sync_promo/sync_promo_ui.h", 55 "!chrome/browser/ui/webui/sync_promo/sync_promo_ui.h",
57 ], 56 ],
57
58 # These files are staying in //chrome so no need to limit.
59 r"chrome_signin_manager_delegate\.(h|cc)": [
60 "+chrome/browser",
61 "+chrome/common",
62 ],
58 } 63 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/signin/chrome_signin_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698