| OLD | NEW |
| 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 "+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 | |
| 17 # 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. |
| 18 "!chrome/browser/profiles/profile_keyed_service.h", | 16 "!chrome/browser/profiles/profile_keyed_service.h", |
| 19 | 17 |
| 20 # TODO(akalin): Remove this dependency. | 18 # TODO(akalin): Remove this dependency. |
| 21 "!sync/util/data_encryption_win.h", | 19 "!sync/util/data_encryption_win.h", |
| 22 ] | 20 ] |
| 23 | 21 |
| 24 specific_include_rules = { | 22 specific_include_rules = { |
| 25 # TODO(joi): Bring this list to zero. | 23 # TODO(joi): Bring this list to zero. |
| 26 # | 24 # |
| (...skipping 25 matching lines...) Expand all Loading... |
| 52 | 50 |
| 53 # TODO(joi): May be able to get rid of the need for this by moving | 51 # TODO(joi): May be able to get rid of the need for this by moving |
| 54 # PersonalDataManagerFactory to chrome/browser/profiles. | 52 # PersonalDataManagerFactory to chrome/browser/profiles. |
| 55 'personal_data_manager_factory\.(h|cc)': [ | 53 'personal_data_manager_factory\.(h|cc)': [ |
| 56 "!chrome/browser/profiles/profile_dependency_manager.h", | 54 "!chrome/browser/profiles/profile_dependency_manager.h", |
| 57 "!chrome/browser/profiles/profile_keyed_service_factory.h", | 55 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
| 58 "!chrome/browser/profiles/profile.h", | 56 "!chrome/browser/profiles/profile.h", |
| 59 "!chrome/browser/webdata/web_data_service_factory.h", | 57 "!chrome/browser/webdata/web_data_service_factory.h", |
| 60 ], | 58 ], |
| 61 } | 59 } |
| OLD | NEW |