| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+components/webdata/common", | 2 "+components/webdata/common", |
| 3 "+content/public/browser", | 3 "+content/public/browser", |
| 4 "+content/public/common", | |
| 5 "+crypto/random.h", | 4 "+crypto/random.h", |
| 6 "+google_apis/gaia", | 5 "+google_apis/gaia", |
| 7 "+google_apis/google_api_keys.h", | 6 "+google_apis/google_api_keys.h", |
| 8 "+gpu/config/gpu_info.h", | 7 "+gpu/config/gpu_info.h", |
| 9 "+net", | 8 "+net", |
| 10 "+sql", | 9 "+sql", |
| 11 "+third_party/libjingle", | 10 "+third_party/libjingle", |
| 12 "+third_party/libphonenumber", # For phone number i18n. | 11 "+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", | 12 "+webkit/plugins/webplugininfo.h", |
| 17 | 13 |
| 18 # TODO(joi): This is "ok" temporarily (it's just a header file with | 14 # 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 | 15 # 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 | 16 # //chrome). The plan of record to get rid of this is to change |
| 21 # Autofill and WebData to not use NotificationService, and instead | 17 # Autofill and WebData to not use NotificationService, and instead |
| 22 # use typed callback interfaces or allow registering base::Callback | 18 # use typed callback interfaces or allow registering base::Callback |
| 23 # callbacks for each event. | 19 # callbacks for each event. |
| 24 "!chrome/common/chrome_notification_types.h", | 20 "!chrome/common/chrome_notification_types.h", |
| 25 | 21 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 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 |