| OLD | NEW |
| 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 # TODO(joi): May be able to remove this if PKS is moved to c/b/api. | 15 # TODO(joi): May be able to remove this if PKS is moved to c/b/api. |
| 16 "!chrome/browser/profiles/profile_keyed_service.h", | 16 "!chrome/browser/profiles/profile_keyed_service.h", |
| 17 | 17 |
| 18 # TODO(akalin): Remove this dependency. | 18 # TODO(akalin): Remove this dependency. |
| 19 "!sync/util/data_encryption_win.h", | 19 "!sync/util/data_encryption_win.h", |
| 20 |
| 21 # TODO(joi): Remove these dependencies once the Prefs refactoring is complete. |
| 22 "!chrome/browser/browser_process.h", |
| 23 "!chrome/browser/prefs/pref_service.h", |
| 24 |
| 25 # TODO(isherman): Remove this dependency prior to committing. |
| 26 "!chrome/browser/profiles/profile_manager.h" |
| 20 ] | 27 ] |
| 21 | 28 |
| 22 specific_include_rules = { | 29 specific_include_rules = { |
| 23 # TODO(joi): Bring this list to zero. | 30 # TODO(joi): Bring this list to zero. |
| 24 # | 31 # |
| 25 # Do not add to the list of temporarily-allowed dependencies below, | 32 # Do not add to the list of temporarily-allowed dependencies below, |
| 26 # and please do not introduce more #includes of these files. | 33 # and please do not introduce more #includes of these files. |
| 27 '.*_[a-z]*test\.cc': [ | 34 '.*_[a-z]*test\.cc': [ |
| 28 "!chrome/browser/infobars/infobar_tab_helper.h", | 35 "!chrome/browser/infobars/infobar_tab_helper.h", |
| 29 "!chrome/browser/password_manager/encryptor.h", | 36 "!chrome/browser/password_manager/encryptor.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 45 | 52 |
| 46 # TODO(joi): May be able to get rid of the need for this by moving | 53 # TODO(joi): May be able to get rid of the need for this by moving |
| 47 # PersonalDataManagerFactory to chrome/browser/profiles. | 54 # PersonalDataManagerFactory to chrome/browser/profiles. |
| 48 'personal_data_manager_factory\.(h|cc)': [ | 55 'personal_data_manager_factory\.(h|cc)': [ |
| 49 "!chrome/browser/profiles/profile_dependency_manager.h", | 56 "!chrome/browser/profiles/profile_dependency_manager.h", |
| 50 "!chrome/browser/profiles/profile_keyed_service_factory.h", | 57 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
| 51 "!chrome/browser/profiles/profile.h", | 58 "!chrome/browser/profiles/profile.h", |
| 52 "!chrome/browser/webdata/web_data_service_factory.h", | 59 "!chrome/browser/webdata/web_data_service_factory.h", |
| 53 ], | 60 ], |
| 54 } | 61 } |
| OLD | NEW |