| 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 | 9 |
| 10 # Permanently-allowed DEPS beyond the standard Browser | 10 # Permanently-allowed DEPS beyond the standard Browser |
| 11 # Components-like DEPS above go here. | 11 # Components-like DEPS above go here. |
| 12 "+third_party/libphonenumber", # For phone number i18n. | 12 "+third_party/libphonenumber", # For phone number i18n. |
| 13 | 13 |
| 14 # TODO(joi): Bring this list to zero. | 14 # TODO(joi): May be able to remove this if PKS is moved to c/b/api. |
| 15 # | |
| 16 # Do not add to the list of temporarily-allowed dependencies below, | |
| 17 # and please do not introduce more #includes of these files. | |
| 18 | |
| 19 # Moving to api | |
| 20 "!chrome/browser/profiles/profile_keyed_service.h", | 15 "!chrome/browser/profiles/profile_keyed_service.h", |
| 21 | 16 |
| 22 # Will go when PersonalDataManagerFactory moves to c/b/configuration. | |
| 23 "!chrome/browser/profiles/profile_dependency_manager.h", | |
| 24 "!chrome/browser/profiles/profile_keyed_service_factory.h", | |
| 25 | |
| 26 "!chrome/browser/ui/tab_contents/tab_contents.h", | |
| 27 | |
| 28 # Do not add to the list of temporarily-allowed dependencies above, | |
| 29 # and please do not introduce more #includes of these files. | |
| 30 | |
| 31 # TODO(akalin): Remove this dependency. | 17 # TODO(akalin): Remove this dependency. |
| 32 "!sync/util/data_encryption_win.h", | 18 "!sync/util/data_encryption_win.h", |
| 33 ] | 19 ] |
| 34 | 20 |
| 35 specific_include_rules = { | 21 specific_include_rules = { |
| 36 # TODO(joi): Bring this list to zero. | 22 # TODO(joi): Bring this list to zero. |
| 37 # | 23 # |
| 38 # Do not add to the list of temporarily-allowed dependencies below, | 24 # Do not add to the list of temporarily-allowed dependencies below, |
| 39 # and please do not introduce more #includes of these files. | 25 # and please do not introduce more #includes of these files. |
| 40 '.*_[a-z]*test\.cc': [ | 26 '.*_[a-z]*test\.cc': [ |
| 41 "!chrome/browser/password_manager/encryptor.h", | 27 "!chrome/browser/password_manager/encryptor.h", |
| 42 "!chrome/browser/profiles/profile.h", | 28 "!chrome/browser/profiles/profile.h", |
| 43 "!chrome/browser/sync/profile_sync_service.h", | 29 "!chrome/browser/sync/profile_sync_service.h", |
| 44 "!chrome/browser/sync/profile_sync_service_factory.h", | 30 "!chrome/browser/sync/profile_sync_service_factory.h", |
| 45 "!chrome/browser/translate/translate_infobar_delegate.h", | 31 "!chrome/browser/translate/translate_infobar_delegate.h", |
| 46 "!chrome/browser/translate/translate_manager.h", | 32 "!chrome/browser/translate/translate_manager.h", |
| 47 "!chrome/browser/webdata/autofill_web_data_service_impl.h", | 33 "!chrome/browser/webdata/autofill_web_data_service_impl.h", |
| 48 "!chrome/browser/webdata/web_data_service.h", | 34 "!chrome/browser/webdata/web_data_service.h", |
| 49 "!chrome/browser/webdata/web_data_service_factory.h", | 35 "!chrome/browser/webdata/web_data_service_factory.h", |
| 50 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", | 36 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", |
| 51 "!chrome/browser/ui/browser.h", | 37 "!chrome/browser/ui/browser.h", |
| 52 "!chrome/browser/ui/browser_tabstrip.h", | 38 "!chrome/browser/ui/browser_tabstrip.h", |
| 53 "!chrome/browser/ui/browser_window.h", | 39 "!chrome/browser/ui/browser_window.h", |
| 54 "!chrome/browser/ui/tab_contents/tab_autofill_manager_delegate.h", | 40 "!chrome/browser/ui/tab_contents/tab_autofill_manager_delegate.h", |
| 41 "!chrome/browser/ui/tab_contents/tab_contents.h", |
| 55 "!chrome/browser/ui/tab_contents/test_tab_contents.h", | 42 "!chrome/browser/ui/tab_contents/test_tab_contents.h", |
| 56 ], | 43 ], |
| 57 | 44 |
| 58 # TODO(joi): Get rid of the need for this by moving | 45 # TODO(joi): May be able to get rid of the need for this by moving |
| 59 # PersonalDataManagerFactory to chrome/browser/configuration. | 46 # PersonalDataManagerFactory to chrome/browser/profiles. |
| 60 'personal_data_manager_factory\.cc': [ | 47 'personal_data_manager_factory\.(h|cc)': [ |
| 48 "!chrome/browser/profiles/profile_dependency_manager.h", |
| 49 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
| 61 "!chrome/browser/profiles/profile.h", | 50 "!chrome/browser/profiles/profile.h", |
| 62 "!chrome/browser/webdata/web_data_service_factory.h", | 51 "!chrome/browser/webdata/web_data_service_factory.h", |
| 63 ], | 52 ], |
| 64 } | 53 } |
| OLD | NEW |