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