| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+components/webdata/common", | 2 "+components/webdata/common", |
| 3 "+crypto/random.h", | 3 "+crypto/random.h", |
| 4 "+google_apis/gaia", | 4 "+google_apis/gaia", |
| 5 "+google_apis/google_api_keys.h", | 5 "+google_apis/google_api_keys.h", |
| 6 "+net", | 6 "+net", |
| 7 "+sql", | 7 "+sql", |
| 8 "+third_party/libjingle", | 8 "+third_party/libjingle", |
| 9 "+third_party/libphonenumber", # For phone number i18n. | 9 "+third_party/libphonenumber", # For phone number i18n. |
| 10 | 10 |
| 11 # TODO(blundell): Bring this list to zero. | 11 # TODO(blundell): Bring this list to zero. |
| 12 # | 12 # |
| 13 # Do not add to the list of temporarily-allowed dependencies below, | 13 # Do not add to the list of temporarily-allowed dependencies below, |
| 14 # and please do not introduce more #includes of these files. | 14 # and please do not introduce more #includes of these files. |
| 15 "!content/public/browser/browser_context.h", | |
| 16 "!content/public/browser/render_view_host.h", | 15 "!content/public/browser/render_view_host.h", |
| 17 "!content/public/browser/web_contents.h", | 16 "!content/public/browser/web_contents.h", |
| 18 "!third_party/WebKit/public/web/WebAutofillClient.h", | 17 "!third_party/WebKit/public/web/WebAutofillClient.h", |
| 19 ] | 18 ] |
| 20 | 19 |
| 21 specific_include_rules = { | 20 specific_include_rules = { |
| 22 'test_autofill_driver.*': [ | 21 'test_autofill_driver.*': [ |
| 23 # TODO(blundell): Eliminate the need for TestAutofillDriver to be a | 22 # TODO(blundell): Eliminate the need for TestAutofillDriver to be a |
| 24 # WebContentsObserver. | 23 # WebContentsObserver. |
| 25 "!content/public/browser/web_contents_observer.h", | 24 "!content/public/browser/web_contents_observer.h", |
| 26 ], | 25 ], |
| 27 'autofill_test_utils\.cc': [ | 26 'autofill_test_utils\.cc': [ |
| 28 # TODO(blundell): Bring this list to zero. | 27 # TODO(blundell): Bring this list to zero. |
| 29 # | 28 # |
| 30 # Do not add to the list of temporarily-allowed dependencies below, | 29 # Do not add to the list of temporarily-allowed dependencies below, |
| 31 # and please do not introduce more #includes of these files. | 30 # and please do not introduce more #includes of these files. |
| 32 "!components/user_prefs/user_prefs.h", | 31 "!components/user_prefs/user_prefs.h", |
| 32 "!content/public/browser/browser_context.h", |
| 33 ], | 33 ], |
| 34 '.*_[a-z]*test\.cc': [ | 34 '.*_[a-z]*test\.cc': [ |
| 35 # TODO(blundell): Bring this list to zero. | 35 # TODO(blundell): Bring this list to zero. |
| 36 # | 36 # |
| 37 # Do not add to the list of temporarily-allowed dependencies below, | 37 # Do not add to the list of temporarily-allowed dependencies below, |
| 38 # and please do not introduce more #includes of these files. | 38 # and please do not introduce more #includes of these files. |
| 39 "!components/user_prefs/user_prefs.h", | 39 "!components/user_prefs/user_prefs.h", |
| 40 "!content/public/browser/browser_context.h", |
| 40 "!content/public/browser/browser_thread.h", | 41 "!content/public/browser/browser_thread.h", |
| 41 "!content/public/test", | 42 "!content/public/test", |
| 42 | 43 |
| 43 # TODO(joi): Bring this list to zero. | 44 # TODO(joi): Bring this list to zero. |
| 44 # | 45 # |
| 45 # Do not add to the list of temporarily-allowed dependencies below, | 46 # Do not add to the list of temporarily-allowed dependencies below, |
| 46 # and please do not introduce more #includes of these files. | 47 # and please do not introduce more #includes of these files. |
| 47 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", | 48 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", |
| 48 "!chrome/browser/autofill/personal_data_manager_factory.h", | 49 "!chrome/browser/autofill/personal_data_manager_factory.h", |
| 49 "!chrome/browser/password_manager/password_manager.h", | 50 "!chrome/browser/password_manager/password_manager.h", |
| 50 "!chrome/browser/password_manager/password_manager_delegate_impl.h", | 51 "!chrome/browser/password_manager/password_manager_delegate_impl.h", |
| 51 "!chrome/browser/profiles/profile.h", | 52 "!chrome/browser/profiles/profile.h", |
| 52 "!chrome/browser/sync/profile_sync_service.h", | 53 "!chrome/browser/sync/profile_sync_service.h", |
| 53 "!chrome/browser/sync/profile_sync_service_factory.h", | 54 "!chrome/browser/sync/profile_sync_service_factory.h", |
| 54 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", | 55 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", |
| 55 "!chrome/browser/webdata/web_data_service_factory.h", | 56 "!chrome/browser/webdata/web_data_service_factory.h", |
| 56 "!chrome/common/chrome_paths.h", | 57 "!chrome/common/chrome_paths.h", |
| 57 "!chrome/test/base/chrome_render_view_host_test_harness.h", | 58 "!chrome/test/base/chrome_render_view_host_test_harness.h", |
| 58 "!chrome/test/base/testing_profile.h", | 59 "!chrome/test/base/testing_profile.h", |
| 59 "!third_party/WebKit/public/web/WebInputElement.h", | 60 "!third_party/WebKit/public/web/WebInputElement.h", |
| 60 ], | 61 ], |
| 61 } | 62 } |
| OLD | NEW |