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

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

Issue 12340111: Introduce //components/user_prefs, use to eliminate c/b/prefs dependency in Autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pure merge of LKGR Created 7 years, 9 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 # Autofill is being made into a Browser Component, so we have these basic 2 # Autofill is being made into a Browser Component, so we have these basic
3 # rules followed by temporary exceptions. Please don't add to the list of 3 # rules followed by temporary exceptions. Please don't add to the list of
4 # exceptions! 4 # exceptions!
5 "-chrome/browser", 5 "-chrome/browser",
6 "+chrome/browser/api", 6 "+chrome/browser/api",
7 "+chrome/browser/autofill", 7 "+chrome/browser/autofill",
8 "+chrome/browser/common", 8 "+chrome/browser/common",
9 9
10 # Permanently-allowed DEPS beyond the standard Browser 10 # Permanently-allowed DEPS beyond the standard Browser
11 # Components-like DEPS above go here. 11 # Components-like DEPS above go here.
12 "+third_party/libphonenumber", # For phone number i18n. 12 "+third_party/libphonenumber", # For phone number i18n.
13 13
14 "+chrome/browser/prefs",
15
16 # TODO(joi): May be able to remove this if PKS is moved to c/b/api. 14 # TODO(joi): May be able to remove this if PKS is moved to c/b/api.
17 "!chrome/browser/profiles/profile_keyed_service.h", 15 "!chrome/browser/profiles/profile_keyed_service.h",
18 16
19 # TODO(akalin): Remove this dependency. 17 # TODO(akalin): Remove this dependency.
20 "!sync/util/data_encryption_win.h", 18 "!sync/util/data_encryption_win.h",
21 ] 19 ]
22 20
23 specific_include_rules = { 21 specific_include_rules = {
24 # TODO(joi): Bring this list to zero. 22 # TODO(joi): Bring this list to zero.
25 # 23 #
(...skipping 25 matching lines...) Expand all
51 49
52 # TODO(joi): May be able to get rid of the need for this by moving 50 # TODO(joi): May be able to get rid of the need for this by moving
53 # PersonalDataManagerFactory to chrome/browser/profiles. 51 # PersonalDataManagerFactory to chrome/browser/profiles.
54 'personal_data_manager_factory\.(h|cc)': [ 52 'personal_data_manager_factory\.(h|cc)': [
55 "!chrome/browser/profiles/profile_dependency_manager.h", 53 "!chrome/browser/profiles/profile_dependency_manager.h",
56 "!chrome/browser/profiles/profile_keyed_service_factory.h", 54 "!chrome/browser/profiles/profile_keyed_service_factory.h",
57 "!chrome/browser/profiles/profile.h", 55 "!chrome/browser/profiles/profile.h",
58 "!chrome/browser/webdata/web_data_service_factory.h", 56 "!chrome/browser/webdata/web_data_service_factory.h",
59 ], 57 ],
60 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698