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

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

Issue 15024007: Eliminate BrowserProcess dependency from sign-in production code. (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
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",
12 "!chrome/browser/policy/cloud/user_policy_signin_service.h", 11 "!chrome/browser/policy/cloud/user_policy_signin_service.h",
13 "!chrome/browser/policy/cloud/user_policy_signin_service_factory.h", 12 "!chrome/browser/policy/cloud/user_policy_signin_service_factory.h",
14 "!chrome/browser/profiles/profile.h", 13 "!chrome/browser/profiles/profile.h",
15 "!chrome/browser/profiles/profile_dependency_manager.h", 14 "!chrome/browser/profiles/profile_dependency_manager.h",
16 "!chrome/browser/profiles/profile_info_cache.h", 15 "!chrome/browser/profiles/profile_info_cache.h",
17 "!chrome/browser/profiles/profile_io_data.h", 16 "!chrome/browser/profiles/profile_io_data.h",
18 "!chrome/browser/profiles/profile_keyed_service.h", 17 "!chrome/browser/profiles/profile_keyed_service.h",
19 "!chrome/browser/profiles/profile_keyed_service_factory.h", 18 "!chrome/browser/profiles/profile_keyed_service_factory.h",
20 "!chrome/browser/profiles/profile_manager.h", 19 "!chrome/browser/profiles/profile_manager.h",
21 "!chrome/browser/sync/profile_sync_service.h", 20 "!chrome/browser/sync/profile_sync_service.h",
(...skipping 18 matching lines...) Expand all
40 "!chrome/common/chrome_switches.h", 39 "!chrome/common/chrome_switches.h",
41 "!chrome/common/chrome_version_info.h", 40 "!chrome/common/chrome_version_info.h",
42 "!chrome/common/extensions/extension_messages.h", 41 "!chrome/common/extensions/extension_messages.h",
43 "!chrome/common/pref_names.h", 42 "!chrome/common/pref_names.h",
44 "!chrome/common/url_constants.h", 43 "!chrome/common/url_constants.h",
45 ] 44 ]
46 45
47 specific_include_rules = { 46 specific_include_rules = {
48 r".*_[a-z]*test\.cc": [ 47 r".*_[a-z]*test\.cc": [
49 # TODO(joi): Get this list to zero. 48 # TODO(joi): Get this list to zero.
49 "!chrome/browser/browser_process.h",
50 "!chrome/browser/prefs/browser_prefs.h", 50 "!chrome/browser/prefs/browser_prefs.h",
51 "!chrome/browser/sync/profile_sync_service_mock.h", 51 "!chrome/browser/sync/profile_sync_service_mock.h",
52 "!chrome/browser/ui/browser.h", 52 "!chrome/browser/ui/browser.h",
53 "!chrome/browser/ui/singleton_tabs.h", 53 "!chrome/browser/ui/singleton_tabs.h",
54 "!chrome/browser/ui/tabs/tab_strip_model.h", 54 "!chrome/browser/ui/tabs/tab_strip_model.h",
55 "!chrome/browser/ui/webui/sync_promo/sync_promo_ui.h", 55 "!chrome/browser/ui/webui/sync_promo/sync_promo_ui.h",
56 ], 56 ],
57 57
58 # These files are staying in //chrome so no need to limit. 58 # These files are staying in //chrome so no need to limit.
59 r"chrome_signin_manager_delegate\.(h|cc)": [ 59 r"(chrome_signin_manager_delegate|"
60 r"signin_names_io_thread.*|"
61 r"signin_manager_factory)"
62 r"\.(h|cc)": [
60 "+chrome/browser", 63 "+chrome/browser",
61 "+chrome/common", 64 "+chrome/common",
62 ], 65 ],
63 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698