| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # Favicon is being made into a Browser Component, so we have these | 2 # Favicon is being made into a Browser Component, so we have these |
| 3 # three basic rules followed by temporary exceptions. Please don't | 3 # three basic rules followed by temporary exceptions. Please don't |
| 4 # add to the list of exceptions! | 4 # add to the list of exceptions! |
| 5 "-chrome/browser", | 5 "-chrome/browser", |
| 6 "+chrome/browser/api", | 6 "+chrome/browser/api", |
| 7 "+chrome/browser/common", | 7 "+chrome/browser/common", |
| 8 "+chrome/browser/favicon", | 8 "+chrome/browser/favicon", |
| 9 | 9 |
| 10 # Permanently-allowed DEPS beyond the standard Browser | 10 # Permanently-allowed DEPS beyond the standard Browser |
| 11 # Components-like DEPS above go here. | 11 # Components-like DEPS above go here. |
| 12 "+chrome/browser/instant/search.h", |
| 12 "+third_party/skia/include/core/SkBitmap.h", | 13 "+third_party/skia/include/core/SkBitmap.h", |
| 13 | 14 |
| 14 # TODO(caitkp): Bring this list to zero. | 15 # TODO(caitkp): Bring this list to zero. |
| 15 # | 16 # |
| 16 # Do not add to the list of temporarily-allowed dependencies below, | 17 # Do not add to the list of temporarily-allowed dependencies below, |
| 17 # and please do not introduce more #includes of these files. | 18 # and please do not introduce more #includes of these files. |
| 18 "!chrome/browser/history/history_backend.h", | 19 "!chrome/browser/history/history_backend.h", |
| 19 "!chrome/browser/history/history_service.h", | 20 "!chrome/browser/history/history_service.h", |
| 20 "!chrome/browser/history/history_service_factory.h", | 21 "!chrome/browser/history/history_service_factory.h", |
| 21 "!chrome/browser/history/history_types.h", | 22 "!chrome/browser/history/history_types.h", |
| 22 "!chrome/browser/history/select_favicon_frames.h", | 23 "!chrome/browser/history/select_favicon_frames.h", |
| 23 "!chrome/browser/profiles/profile.h", | 24 "!chrome/browser/profiles/profile.h", |
| 24 "!chrome/browser/profiles/profile_dependency_manager.h", | 25 "!chrome/browser/profiles/profile_dependency_manager.h", |
| 25 "!chrome/browser/profiles/profile_keyed_service.h", | 26 "!chrome/browser/profiles/profile_keyed_service.h", |
| 26 "!chrome/browser/profiles/profile_keyed_service_factory.h", | 27 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
| 27 # TODO(samarth): search.h will be moved to chrome/browser/search. Update this | |
| 28 # dependency and move to list of permanently-allowed DEPS when that happens. | |
| 29 # See http://crbug.com/179184. | |
| 30 "!chrome/browser/ui/search/search.h", | |
| 31 "!chrome/browser/ui/webui/chrome_web_ui_controller_factory.h", | 28 "!chrome/browser/ui/webui/chrome_web_ui_controller_factory.h", |
| 32 # Do not add to the list of temporarily-allowed dependencies above, | 29 # Do not add to the list of temporarily-allowed dependencies above, |
| 33 # and please do not introduce more #includes of these files. | 30 # and please do not introduce more #includes of these files. |
| 34 ] | 31 ] |
| 35 | 32 |
| 36 specific_include_rules = { | 33 specific_include_rules = { |
| 37 # TODO(caitkp): Look into removing history/ dependencies. | 34 # TODO(caitkp): Look into removing history/ dependencies. |
| 38 'favicon_util\.(h|cc)': [ | 35 'favicon_util\.(h|cc)': [ |
| 39 "-chrome", | 36 "-chrome", |
| 40 "-chrome/browser", | 37 "-chrome/browser", |
| 41 "+chrome/browser/favicon/favicon_util.h", | 38 "+chrome/browser/favicon/favicon_util.h", |
| 42 "+chrome/common/icon_messages.h", | 39 "+chrome/common/icon_messages.h", |
| 43 "!chrome/browser/history/history_types.h", | 40 "!chrome/browser/history/history_types.h", |
| 44 "!chrome/browser/history/select_favicon_frames.h", | 41 "!chrome/browser/history/select_favicon_frames.h", |
| 45 ] | 42 ] |
| 46 } | 43 } |
| OLD | NEW |