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

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

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

Powered by Google App Engine
This is Rietveld 408576698