| 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 basic |
| 3 # three basic rules followed by temporary exceptions. Please don't | 3 # rules followed by temporary exceptions. Please don't add to the list of |
| 4 # add to the list of 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 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 "!chrome/browser/webdata/autofill_web_data_service_impl.h", | 38 "!chrome/browser/webdata/autofill_web_data_service_impl.h", |
| 39 "!chrome/browser/webdata/web_data_service.h", | 39 "!chrome/browser/webdata/web_data_service.h", |
| 40 "!chrome/browser/webdata/web_data_service_factory.h", | 40 "!chrome/browser/webdata/web_data_service_factory.h", |
| 41 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", | 41 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", |
| 42 "!chrome/browser/ui/browser.h", | 42 "!chrome/browser/ui/browser.h", |
| 43 "!chrome/browser/ui/browser_tabstrip.h", | 43 "!chrome/browser/ui/browser_tabstrip.h", |
| 44 "!chrome/browser/ui/browser_window.h", | 44 "!chrome/browser/ui/browser_window.h", |
| 45 "!chrome/browser/ui/tabs/tab_strip_model.h", | 45 "!chrome/browser/ui/tabs/tab_strip_model.h", |
| 46 ], | 46 ], |
| 47 | 47 |
| 48 # TODO(joi): Remove these dependencies once the Prefs refactoring is complete. |
| 49 'fingerprint\.cc': [ |
| 50 "!chrome/browser/browser_process.h", |
| 51 ], |
| 52 |
| 48 # 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 |
| 49 # PersonalDataManagerFactory to chrome/browser/profiles. | 54 # PersonalDataManagerFactory to chrome/browser/profiles. |
| 50 'personal_data_manager_factory\.(h|cc)': [ | 55 'personal_data_manager_factory\.(h|cc)': [ |
| 51 "!chrome/browser/profiles/profile_dependency_manager.h", | 56 "!chrome/browser/profiles/profile_dependency_manager.h", |
| 52 "!chrome/browser/profiles/profile_keyed_service_factory.h", | 57 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
| 53 "!chrome/browser/profiles/profile.h", | 58 "!chrome/browser/profiles/profile.h", |
| 54 "!chrome/browser/webdata/web_data_service_factory.h", | 59 "!chrome/browser/webdata/web_data_service_factory.h", |
| 55 ], | 60 ], |
| 56 } | 61 } |
| OLD | NEW |