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

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: Ready for review. 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 # Will go away once Prefs completes its move to base/prefs/.
Mattias Nissler (ping if slow) 2012/12/19 19:50:22 How so? You need the syncable bits, which will nev
Jói 2012/12/20 16:30:31 Hmm, good point, some more work would be needed e.
16 "+chrome/browser/prefs",
17
15 # TODO(joi): May be able to remove this if PKS is moved to c/b/api. 18 # TODO(joi): May be able to remove this if PKS is moved to c/b/api.
16 "!chrome/browser/profiles/profile_keyed_service.h", 19 "!chrome/browser/profiles/profile_keyed_service.h",
17 20
18 # TODO(akalin): Remove this dependency. 21 # TODO(akalin): Remove this dependency.
19 "!sync/util/data_encryption_win.h", 22 "!sync/util/data_encryption_win.h",
20 ] 23 ]
21 24
22 specific_include_rules = { 25 specific_include_rules = {
23 # TODO(joi): Bring this list to zero. 26 # TODO(joi): Bring this list to zero.
24 # 27 #
(...skipping 20 matching lines...) Expand all
45 48
46 # TODO(joi): May be able to get rid of the need for this by moving 49 # TODO(joi): May be able to get rid of the need for this by moving
47 # PersonalDataManagerFactory to chrome/browser/profiles. 50 # PersonalDataManagerFactory to chrome/browser/profiles.
48 'personal_data_manager_factory\.(h|cc)': [ 51 'personal_data_manager_factory\.(h|cc)': [
49 "!chrome/browser/profiles/profile_dependency_manager.h", 52 "!chrome/browser/profiles/profile_dependency_manager.h",
50 "!chrome/browser/profiles/profile_keyed_service_factory.h", 53 "!chrome/browser/profiles/profile_keyed_service_factory.h",
51 "!chrome/browser/profiles/profile.h", 54 "!chrome/browser/profiles/profile.h",
52 "!chrome/browser/webdata/web_data_service_factory.h", 55 "!chrome/browser/webdata/web_data_service_factory.h",
53 ], 56 ],
54 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698