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