| OLD | NEW |
| (Empty) |
| 1 include_rules = [ | |
| 2 "+components/webdata/common", | |
| 3 "+content/public/browser", | |
| 4 "+content/public/common", | |
| 5 "+crypto/random.h", | |
| 6 "+google_apis/gaia", | |
| 7 "+google_apis/google_api_keys.h", | |
| 8 "+gpu/config/gpu_info.h", | |
| 9 "+net", | |
| 10 "+sql", | |
| 11 "+third_party/libjingle", | |
| 12 "+third_party/libphonenumber", # For phone number i18n. | |
| 13 # Allow inclusion of WebKit API files. | |
| 14 "+third_party/WebKit/public/platform", | |
| 15 "+third_party/WebKit/Source/WebKit/chromium", | |
| 16 "+webkit/plugins/webplugininfo.h", | |
| 17 | |
| 18 # TODO(akalin): Remove this dependency. | |
| 19 "!sync/util/data_encryption_win.h", | |
| 20 ] | |
| 21 | |
| 22 specific_include_rules = { | |
| 23 '.*_[a-z]*test\.cc': [ | |
| 24 "+content/public/test", | |
| 25 | |
| 26 # TODO(joi, kaiwang): Bring this list to zero. | |
| 27 # | |
| 28 # Do not add to the list of temporarily-allowed dependencies below, | |
| 29 # and please do not introduce more #includes of these files. | |
| 30 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", | |
| 31 "!chrome/browser/autofill/personal_data_manager_factory.h", | |
| 32 "!chrome/browser/password_manager/encryptor.h", | |
| 33 "!chrome/browser/password_manager/password_manager.h", | |
| 34 "!chrome/browser/password_manager/password_manager_delegate_impl.h", | |
| 35 "!chrome/browser/profiles/profile.h", | |
| 36 "!chrome/browser/sync/profile_sync_service.h", | |
| 37 "!chrome/browser/sync/profile_sync_service_factory.h", | |
| 38 "!chrome/browser/translate/translate_infobar_delegate.h", | |
| 39 "!chrome/browser/translate/translate_manager.h", | |
| 40 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", | |
| 41 "!chrome/browser/ui/browser.h", | |
| 42 "!chrome/browser/ui/browser_tabstrip.h", | |
| 43 "!chrome/browser/ui/browser_window.h", | |
| 44 "!chrome/browser/ui/tabs/tab_strip_model.h", | |
| 45 "!chrome/browser/webdata/web_data_service.h", | |
| 46 "!chrome/browser/webdata/web_data_service_factory.h", | |
| 47 "!chrome/browser/webdata/web_data_service_test_util.h", | |
| 48 "!chrome/common/chrome_paths.h", | |
| 49 "!chrome/common/pref_names.h", | |
| 50 "!chrome/test/base", | |
| 51 ], | |
| 52 } | |
| OLD | NEW |