| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # Autofill is being made into a component (it will end up at | 2 # Autofill is being made into a component (it will end up at |
| 3 # src/components/autofill and not depend on src/chrome), so we have | 3 # src/components/autofill and not depend on src/chrome), so we have |
| 4 # these basic rules followed by temporary exceptions. Please don't | 4 # these basic rules followed by temporary exceptions. Please don't |
| 5 # add to the list of exceptions! | 5 # add to the list of exceptions! |
| 6 "-chrome/browser", | 6 "-chrome/browser", |
| 7 "+chrome/browser/api/sync", |
| 8 "+chrome/browser/api/webdata", |
| 7 "+chrome/browser/autofill", | 9 "+chrome/browser/autofill", |
| 10 "+chrome/browser/common", |
| 8 | 11 |
| 9 # Permanently-allowed DEPS beyond the standard Browser | 12 # Permanently-allowed DEPS beyond the standard Browser |
| 10 # Components-like DEPS above go here. | 13 # Components-like DEPS above go here. |
| 11 "+third_party/libphonenumber", # For phone number i18n. | 14 "+third_party/libphonenumber", # For phone number i18n. |
| 12 | 15 |
| 13 # TODO(joi, kaiwang): Bring this list to zero. | 16 # TODO(joi, kaiwang): Bring this list to zero. |
| 14 "!chrome/browser/api/infobars", | 17 "!chrome/browser/api/infobars", |
| 15 "!chrome/browser/api/webdata", | 18 "!chrome/browser/api/webdata", |
| 16 "!chrome/browser/common", | 19 "!chrome/browser/common", |
| 17 "!chrome/browser/ui/autofill", | 20 "!chrome/browser/ui/autofill", |
| 18 | 21 |
| 19 # TODO(akalin): Remove this dependency. | 22 # TODO(akalin): Remove this dependency. |
| 20 "!sync/util/data_encryption_win.h", | 23 "!sync/util/data_encryption_win.h", |
| 21 ] | 24 ] |
| 22 | 25 |
| 23 specific_include_rules = { | 26 specific_include_rules = { |
| 24 # TODO(joi, kaiwang): Bring this list to zero. | 27 # TODO(joi, kaiwang): Bring this list to zero. |
| 25 # | 28 # |
| 26 # Do not add to the list of temporarily-allowed dependencies below, | 29 # Do not add to the list of temporarily-allowed dependencies below, |
| 27 # and please do not introduce more #includes of these files. | 30 # and please do not introduce more #includes of these files. |
| 28 '.*_[a-z]*test\.cc': [ | 31 '.*_[a-z]*test\.cc': [ |
| 32 "!chrome/browser/api/infobars/confirm_infobar_delegate.h", |
| 33 "!chrome/browser/api/infobars/infobar_service.h", |
| 29 "!chrome/browser/password_manager/encryptor.h", | 34 "!chrome/browser/password_manager/encryptor.h", |
| 30 "!chrome/browser/password_manager/password_manager.h", | 35 "!chrome/browser/password_manager/password_manager.h", |
| 31 "!chrome/browser/password_manager/password_manager_delegate_impl.h", | 36 "!chrome/browser/password_manager/password_manager_delegate_impl.h", |
| 32 "!chrome/browser/profiles/profile.h", | 37 "!chrome/browser/profiles/profile.h", |
| 33 "!chrome/browser/sync/profile_sync_service.h", | 38 "!chrome/browser/sync/profile_sync_service.h", |
| 34 "!chrome/browser/sync/profile_sync_service_factory.h", | 39 "!chrome/browser/sync/profile_sync_service_factory.h", |
| 35 "!chrome/browser/translate/translate_infobar_delegate.h", | 40 "!chrome/browser/translate/translate_infobar_delegate.h", |
| 36 "!chrome/browser/translate/translate_manager.h", | 41 "!chrome/browser/translate/translate_manager.h", |
| 37 "!chrome/browser/webdata/autofill_web_data_service_impl.h", | 42 "!chrome/browser/webdata/autofill_web_data_service_impl.h", |
| 38 "!chrome/browser/webdata/web_data_service.h", | 43 "!chrome/browser/webdata/web_data_service.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 56 "!chrome/browser/profiles/profile_keyed_service.h", | 61 "!chrome/browser/profiles/profile_keyed_service.h", |
| 57 "!chrome/browser/profiles/profile_keyed_service_factory.h", | 62 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
| 58 "!chrome/browser/profiles/profile.h", | 63 "!chrome/browser/profiles/profile.h", |
| 59 "!chrome/browser/webdata/web_data_service_factory.h", | 64 "!chrome/browser/webdata/web_data_service_factory.h", |
| 60 ], | 65 ], |
| 61 | 66 |
| 62 'personal_data_manager\.(h|cc)': [ | 67 'personal_data_manager\.(h|cc)': [ |
| 63 # TODO(joi): Remove. | 68 # TODO(joi): Remove. |
| 64 "!chrome/browser/api/sync", | 69 "!chrome/browser/api/sync", |
| 65 ], | 70 ], |
| 71 |
| 72 'autofill_cc_infobar_delegate\.(h|cc)': [ |
| 73 "!chrome/browser/api/infobars/confirm_infobar_delegate.h", |
| 74 "!chrome/browser/api/infobars/infobar_service.h", |
| 75 ], |
| 66 } | 76 } |
| OLD | NEW |