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