| 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/common", | 6 "+chrome/browser/common", |
| 7 "+chrome/browser/favicon", | 7 "+chrome/browser/favicon", |
| 8 | 8 |
| 9 # Permanently-allowed DEPS beyond the standard Browser | 9 # Permanently-allowed DEPS beyond the standard Browser |
| 10 # Components-like DEPS above go here. | 10 # Components-like DEPS above go here. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "!chrome/browser/ui/webui/chrome_web_ui_controller_factory.h", | 25 "!chrome/browser/ui/webui/chrome_web_ui_controller_factory.h", |
| 26 # Do not add to the list of temporarily-allowed dependencies above, | 26 # Do not add to the list of temporarily-allowed dependencies above, |
| 27 # and please do not introduce more #includes of these files. | 27 # and please do not introduce more #includes of these files. |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 specific_include_rules = { | 30 specific_include_rules = { |
| 31 # TODO(caitkp): Look into removing history/ dependencies. | 31 # TODO(caitkp): Look into removing history/ dependencies. |
| 32 'favicon_util\.(h|cc)': [ | 32 'favicon_util\.(h|cc)': [ |
| 33 "-chrome", | 33 "-chrome", |
| 34 "-chrome/browser", | 34 "-chrome/browser", |
| 35 "+chrome/browser/favicon/favicon_types.h", | |
| 36 "+chrome/browser/favicon/favicon_util.h", | 35 "+chrome/browser/favicon/favicon_util.h", |
| 36 "+chrome/common/favicon/favicon_types.h", |
| 37 "+chrome/common/icon_messages.h", | 37 "+chrome/common/icon_messages.h", |
| 38 "!chrome/browser/history/history_types.h", | 38 "!chrome/browser/history/history_types.h", |
| 39 "!chrome/browser/history/select_favicon_frames.h", | 39 "!chrome/browser/history/select_favicon_frames.h", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| OLD | NEW |