| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+content/public/browser", | 2 "+content/public/browser", |
| 3 "+crypto/random.h", | 3 "+crypto/random.h", |
| 4 "+google_apis/google_api_keys.h", | 4 "+google_apis/google_api_keys.h", |
| 5 "+net", | 5 "+net", |
| 6 "+third_party/libjingle", | 6 "+third_party/libjingle", |
| 7 "+third_party/libphonenumber", # For phone number i18n. | 7 "+third_party/libphonenumber", # For phone number i18n. |
| 8 "+webkit/plugins/webplugininfo.h", | 8 "+webkit/plugins/webplugininfo.h", |
| 9 | 9 |
| 10 # TODO(joi): This is "ok" temporarily (it's just a header file with | 10 # TODO(joi): This is "ok" temporarily (it's just a header file with |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 specific_include_rules = { | 25 specific_include_rules = { |
| 26 '.*_[a-z]*test\.cc': [ | 26 '.*_[a-z]*test\.cc': [ |
| 27 "+content/public/test", | 27 "+content/public/test", |
| 28 | 28 |
| 29 # TODO(joi, kaiwang): Bring this list to zero. | 29 # TODO(joi, kaiwang): Bring this list to zero. |
| 30 # | 30 # |
| 31 # Do not add to the list of temporarily-allowed dependencies below, | 31 # Do not add to the list of temporarily-allowed dependencies below, |
| 32 # and please do not introduce more #includes of these files. | 32 # and please do not introduce more #includes of these files. |
| 33 "!chrome/browser/api/infobars/confirm_infobar_delegate.h", |
| 34 "!chrome/browser/api/infobars/infobar_service.h", |
| 33 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", | 35 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", |
| 34 "!chrome/browser/autofill/personal_data_manager_factory.h", | 36 "!chrome/browser/autofill/personal_data_manager_factory.h", |
| 35 "!chrome/browser/api/infobars/confirm_infobar_delegate.h", | |
| 36 "!chrome/browser/api/infobars/infobar_service.h", | |
| 37 "!chrome/browser/password_manager/encryptor.h", | 37 "!chrome/browser/password_manager/encryptor.h", |
| 38 "!chrome/browser/password_manager/password_manager.h", | 38 "!chrome/browser/password_manager/password_manager.h", |
| 39 "!chrome/browser/password_manager/password_manager_delegate_impl.h", | 39 "!chrome/browser/password_manager/password_manager_delegate_impl.h", |
| 40 "!chrome/browser/profiles/profile.h", | 40 "!chrome/browser/profiles/profile.h", |
| 41 "!chrome/browser/sync/profile_sync_service.h", | 41 "!chrome/browser/sync/profile_sync_service.h", |
| 42 "!chrome/browser/sync/profile_sync_service_factory.h", | 42 "!chrome/browser/sync/profile_sync_service_factory.h", |
| 43 "!chrome/browser/translate/translate_infobar_delegate.h", | 43 "!chrome/browser/translate/translate_infobar_delegate.h", |
| 44 "!chrome/browser/translate/translate_manager.h", | 44 "!chrome/browser/translate/translate_manager.h", |
| 45 "!chrome/browser/webdata/autofill_web_data_service_impl.h", | |
| 46 "!chrome/browser/webdata/web_data_service.h", | |
| 47 "!chrome/browser/webdata/web_data_service_factory.h", | |
| 48 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", | 45 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", |
| 49 "!chrome/browser/ui/browser.h", | 46 "!chrome/browser/ui/browser.h", |
| 50 "!chrome/browser/ui/browser_tabstrip.h", | 47 "!chrome/browser/ui/browser_tabstrip.h", |
| 51 "!chrome/browser/ui/browser_window.h", | 48 "!chrome/browser/ui/browser_window.h", |
| 52 "!chrome/browser/ui/tabs/tab_strip_model.h", | 49 "!chrome/browser/ui/tabs/tab_strip_model.h", |
| 50 "!chrome/browser/webdata/autofill_web_data_service_impl.h", |
| 51 "!chrome/browser/webdata/web_data_service.h", |
| 52 "!chrome/browser/webdata/web_data_service_factory.h", |
| 53 "!chrome/browser/webdata/web_data_service_test_util.h", |
| 53 "!chrome/common/chrome_constants.h", | 54 "!chrome/common/chrome_constants.h", |
| 54 "!chrome/common/chrome_paths.h", | 55 "!chrome/common/chrome_paths.h", |
| 55 "!chrome/common/pref_names.h", | 56 "!chrome/common/pref_names.h", |
| 56 "!chrome/common/render_messages.h", | 57 "!chrome/common/render_messages.h", |
| 57 "!chrome/common/url_constants.h", | 58 "!chrome/common/url_constants.h", |
| 58 "!chrome/test/base", | 59 "!chrome/test/base", |
| 59 ], | 60 ], |
| 60 } | 61 } |
| OLD | NEW |