| 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(joi): This is "ok" temporarily (it's just a header file with | |
| 19 # a large enum, and doesn't bring in any other dependencies on | |
| 20 # //chrome). The plan of record to get rid of this is to change | |
| 21 # Autofill and WebData to not use NotificationService, and instead | |
| 22 # use typed callback interfaces or allow registering base::Callback | |
| 23 # callbacks for each event. | |
| 24 "!chrome/common/chrome_notification_types.h", | |
| 25 | |
| 26 # TODO(akalin): Remove this dependency. | |
| 27 "!sync/util/data_encryption_win.h", | |
| 28 ] | |
| 29 | |
| 30 specific_include_rules = { | |
| 31 '.*_[a-z]*test\.cc': [ | |
| 32 "+content/public/test", | |
| 33 | |
| 34 # TODO(joi, kaiwang): Bring this list to zero. | |
| 35 # | |
| 36 # Do not add to the list of temporarily-allowed dependencies below, | |
| 37 # and please do not introduce more #includes of these files. | |
| 38 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", | |
| 39 "!chrome/browser/autofill/personal_data_manager_factory.h", | |
| 40 "!chrome/browser/password_manager/encryptor.h", | |
| 41 "!chrome/browser/password_manager/password_manager.h", | |
| 42 "!chrome/browser/password_manager/password_manager_delegate_impl.h", | |
| 43 "!chrome/browser/profiles/profile.h", | |
| 44 "!chrome/browser/sync/profile_sync_service.h", | |
| 45 "!chrome/browser/sync/profile_sync_service_factory.h", | |
| 46 "!chrome/browser/translate/translate_infobar_delegate.h", | |
| 47 "!chrome/browser/translate/translate_manager.h", | |
| 48 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", | |
| 49 "!chrome/browser/ui/browser.h", | |
| 50 "!chrome/browser/ui/browser_tabstrip.h", | |
| 51 "!chrome/browser/ui/browser_window.h", | |
| 52 "!chrome/browser/ui/tabs/tab_strip_model.h", | |
| 53 "!chrome/browser/webdata/web_data_service.h", | |
| 54 "!chrome/browser/webdata/web_data_service_factory.h", | |
| 55 "!chrome/browser/webdata/web_data_service_test_util.h", | |
| 56 "!chrome/common/chrome_constants.h", | |
| 57 "!chrome/common/chrome_paths.h", | |
| 58 "!chrome/common/pref_names.h", | |
| 59 "!chrome/common/render_messages.h", | |
| 60 "!chrome/common/url_constants.h", | |
| 61 "!chrome/test/base", | |
| 62 ], | |
| 63 } | |
| OLD | NEW |