| 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", | 15 "!content/public/browser/browser_context.h", |
| 16 "!content/public/browser/browser_thread.h", | 16 "!content/public/browser/browser_thread.h", |
| 17 "!content/public/browser/render_view_host.h", | 17 "!content/public/browser/render_view_host.h", |
| 18 "!content/public/browser/web_contents.h", | 18 "!content/public/browser/web_contents.h", |
| 19 "!content/public/common/url_constants.h", | |
| 20 "!third_party/WebKit/public/web/WebAutofillClient.h", | 19 "!third_party/WebKit/public/web/WebAutofillClient.h", |
| 21 ] | 20 ] |
| 22 | 21 |
| 23 specific_include_rules = { | 22 specific_include_rules = { |
| 24 'test_autofill_driver.*': [ | 23 'test_autofill_driver.*': [ |
| 25 # TODO(blundell): Eliminate the need for TestAutofillDriver to be a | 24 # TODO(blundell): Eliminate the need for TestAutofillDriver to be a |
| 26 # WebContentsObserver. | 25 # WebContentsObserver. |
| 27 "!content/public/browser/web_contents_observer.h", | 26 "!content/public/browser/web_contents_observer.h", |
| 28 ], | 27 ], |
| 29 '.*_[a-z]*test\.cc': [ | 28 '.*_[a-z]*test\.cc': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 42 "!chrome/browser/sync/profile_sync_service_factory.h", | 41 "!chrome/browser/sync/profile_sync_service_factory.h", |
| 43 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", | 42 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", |
| 44 "!chrome/browser/webdata/web_data_service.h", | 43 "!chrome/browser/webdata/web_data_service.h", |
| 45 "!chrome/browser/webdata/web_data_service_factory.h", | 44 "!chrome/browser/webdata/web_data_service_factory.h", |
| 46 "!chrome/common/chrome_paths.h", | 45 "!chrome/common/chrome_paths.h", |
| 47 "!chrome/test/base/chrome_render_view_host_test_harness.h", | 46 "!chrome/test/base/chrome_render_view_host_test_harness.h", |
| 48 "!chrome/test/base/testing_profile.h", | 47 "!chrome/test/base/testing_profile.h", |
| 49 "!third_party/WebKit/public/web/WebInputElement.h", | 48 "!third_party/WebKit/public/web/WebInputElement.h", |
| 50 ], | 49 ], |
| 51 } | 50 } |
| OLD | NEW |