| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+content/public/browser", | 2 "+content/public/browser", |
| 3 "+crypto/random.h", | 3 "+crypto/random.h", |
| 4 "+google_apis/google_api_keys.h", | 4 "+google_apis/google_api_keys.h", |
| 5 "+net", | 5 "+net", |
| 6 "+third_party/libjingle", | 6 "+third_party/libjingle", |
| 7 "+third_party/libphonenumber", # For phone number i18n. | 7 "+third_party/libphonenumber", # For phone number i18n. |
| 8 "+webkit/plugins/webplugininfo.h", | 8 "+webkit/plugins/webplugininfo.h", |
| 9 | 9 |
| 10 # TODO(joi): This is "ok" temporarily (it's just a header file with | 10 # TODO(joi): This is "ok" temporarily (it's just a header file with |
| 11 # a large enum, and doesn't bring in any other dependencies on | 11 # a large enum, and doesn't bring in any other dependencies on |
| 12 # //chrome). The plan of record to get rid of this is to change | 12 # //chrome). The plan of record to get rid of this is to change |
| 13 # Autofill and WebData to not use NotificationService, and instead | 13 # Autofill and WebData to not use NotificationService, and instead |
| 14 # use typed callback interfaces or allow registering base::Callback | 14 # use typed callback interfaces or allow registering base::Callback |
| 15 # callbacks for each event. | 15 # callbacks for each event. |
| 16 "!chrome/common/chrome_notification_types.h", | 16 "!chrome/common/chrome_notification_types.h", |
| 17 | 17 |
| 18 # TODO(joi, kaiwang): Bring this list to zero. | 18 # TODO(joi, kaiwang): Bring this list to zero. |
| 19 "!chrome/browser/api/webdata", | 19 "!chrome/browser/api/webdata", |
| 20 "!chrome/browser/webdata", |
| 20 | 21 |
| 21 # TODO(akalin): Remove this dependency. | 22 # TODO(akalin): Remove this dependency. |
| 22 "!sync/util/data_encryption_win.h", | 23 "!sync/util/data_encryption_win.h", |
| 23 ] | 24 ] |
| 24 | 25 |
| 25 specific_include_rules = { | 26 specific_include_rules = { |
| 26 '.*_[a-z]*test\.cc': [ | 27 '.*_[a-z]*test\.cc': [ |
| 27 "+content/public/test", | 28 "+content/public/test", |
| 28 | 29 |
| 29 # TODO(joi, kaiwang): Bring this list to zero. | 30 # TODO(joi, kaiwang): Bring this list to zero. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 51 "!chrome/browser/ui/browser_window.h", | 52 "!chrome/browser/ui/browser_window.h", |
| 52 "!chrome/browser/ui/tabs/tab_strip_model.h", | 53 "!chrome/browser/ui/tabs/tab_strip_model.h", |
| 53 "!chrome/common/chrome_constants.h", | 54 "!chrome/common/chrome_constants.h", |
| 54 "!chrome/common/chrome_paths.h", | 55 "!chrome/common/chrome_paths.h", |
| 55 "!chrome/common/pref_names.h", | 56 "!chrome/common/pref_names.h", |
| 56 "!chrome/common/render_messages.h", | 57 "!chrome/common/render_messages.h", |
| 57 "!chrome/common/url_constants.h", | 58 "!chrome/common/url_constants.h", |
| 58 "!chrome/test/base", | 59 "!chrome/test/base", |
| 59 ], | 60 ], |
| 60 } | 61 } |
| OLD | NEW |