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

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

Issue 12902030: Make Encryptor a component. Used by //chrome and (soon) //components/webdata. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 # Webdata is being made into a component (it will end up at 2 # Webdata is being made into a component (it will end up at
3 # //components/webdata and not depend on //chrome), so we have these basic 3 # //components/webdata and not depend on //chrome), so we have these basic
4 # rules followed by temporary exceptions. Please don't add to the list of 4 # rules followed by temporary exceptions. Please don't add to the list of
5 # exceptions! 5 # exceptions!
6 "-chrome/browser", 6 "-chrome/browser",
7 "-chrome/common", 7 "-chrome/common",
8 "+chrome/browser/api/webdata", 8 "+chrome/browser/api/webdata",
9 "+chrome/browser/webdata", 9 "+chrome/browser/webdata",
10 "+components/encryptor",
10 11
11 # TODO(caitkp, kaiwang): Bring this list to zero. 12 # TODO(caitkp, kaiwang): Bring this list to zero.
12 # Do not add to the list of temporarily-allowed dependencies below, 13 # Do not add to the list of temporarily-allowed dependencies below,
13 # and please do not introduce more #includes of these files. 14 # and please do not introduce more #includes of these files.
14 "!chrome/browser/history/history_database.h", 15 "!chrome/browser/history/history_database.h",
15 "!chrome/browser/password_manager/encryptor.h",
16 "!chrome/browser/password_manager/ie7_password.h", 16 "!chrome/browser/password_manager/ie7_password.h",
17 "!chrome/browser/search_engines/search_terms_data.h", 17 "!chrome/browser/search_engines/search_terms_data.h",
18 "!chrome/browser/search_engines/template_url.h", 18 "!chrome/browser/search_engines/template_url.h",
19 "!chrome/browser/search_engines/template_url_id.h", 19 "!chrome/browser/search_engines/template_url_id.h",
20 "!chrome/browser/search_engines/template_url_service.h", 20 "!chrome/browser/search_engines/template_url_service.h",
21 "!chrome/browser/ui/profile_error_dialog.h", 21 "!chrome/browser/ui/profile_error_dialog.h",
22 "!chrome/common/chrome_constants.h", 22 "!chrome/common/chrome_constants.h",
23 "!chrome/common/chrome_notification_types.h", 23 "!chrome/common/chrome_notification_types.h",
24 # Do not add to the list of temporarily-allowed dependencies above, 24 # Do not add to the list of temporarily-allowed dependencies above,
25 # and please do not introduce more #includes of these files. 25 # and please do not introduce more #includes of these files.
26 ] 26 ]
27 27
28 specific_include_rules = { 28 specific_include_rules = {
29 'web_data_service_factory\.(h|cc)': [ 29 'web_data_service_factory\.(h|cc)': [
30 "!chrome/browser/profiles/profile.h", 30 "!chrome/browser/profiles/profile.h",
31 "!chrome/browser/profiles/profile_dependency_manager.h", 31 "!chrome/browser/profiles/profile_dependency_manager.h",
32 "!chrome/browser/profiles/profile_keyed_service.h", 32 "!chrome/browser/profiles/profile_keyed_service.h",
33 "!chrome/browser/profiles/profile_keyed_service_factory.h", 33 "!chrome/browser/profiles/profile_keyed_service_factory.h",
34 ] 34 ]
35 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698