| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+cc/switches.h", # For cc command line switches. | 2 "+cc/switches.h", # For cc command line switches. |
| 3 "+components/display_compositor", | 3 "+components/display_compositor", |
| 4 "+services/ui/public", | 4 "+services/ui/public", |
| 5 "+third_party/zlib", | 5 "+third_party/zlib", |
| 6 "+third_party/libyuv", | 6 "+third_party/libyuv", |
| 7 | 7 |
| 8 # The renderer_host files should only call upwards in the layering via the | 8 # The renderer_host files should only call upwards in the layering via the |
| 9 # delegate interfaces. | 9 # delegate interfaces. |
| 10 "-content/browser/frame_host", | 10 "-content/browser/frame_host", |
| 11 "-content/browser/web_contents", | 11 "-content/browser/web_contents", |
| 12 "-content/public/browser/web_contents.h", | 12 "-content/public/browser/web_contents.h", |
| 13 "-content/public/browser/web_contents_delegate.h", | 13 "-content/public/browser/web_contents_delegate.h", |
| 14 "-content/public/browser/web_contents_view.h", | 14 "-content/public/browser/web_contents_view.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 specific_include_rules = { | 17 specific_include_rules = { |
| 18 ".*_(unit|browser)test\.(cc|mm)": [ | 18 ".*_(unit|browser)test\.(cc|mm)": [ |
| 19 "+content/browser/frame_host", | 19 "+content/browser/frame_host", |
| 20 "+content/browser/web_contents", | 20 "+content/browser/web_contents", |
| 21 "+content/public/browser/web_contents.h", | 21 "+content/public/browser/web_contents.h", |
| 22 "+content/public/browser/web_contents_view.h", | 22 "+content/public/browser/web_contents_view.h", |
| 23 ], | 23 ], |
| 24 "render_process_host_impl\.cc": [ | 24 "render_process_host_impl\.cc": [ |
| 25 "+content/browser/frame_host/render_frame_message_filter.h", | 25 "+content/browser/frame_host/render_frame_message_filter.h", |
| 26 ], | 26 ], |
| 27 "render_process_host_impl\.h": [ |
| 28 "+third_party/WebKit/Source/modules/indexeddb/indexed_db.mojom.h", |
| 29 ], |
| 27 "render_widget_host_view_mac\.mm": [ | 30 "render_widget_host_view_mac\.mm": [ |
| 28 "+content/browser/frame_host", | 31 "+content/browser/frame_host", |
| 29 "+content/public/browser/web_contents.h", | 32 "+content/public/browser/web_contents.h", |
| 30 ], | 33 ], |
| 31 "ime_adapter_android\.cc": [ | 34 "ime_adapter_android\.cc": [ |
| 32 "+content/browser/frame_host", | 35 "+content/browser/frame_host", |
| 33 "+content/public/browser/web_contents.h", | 36 "+content/public/browser/web_contents.h", |
| 34 ], | 37 ], |
| 35 # TODO(nasko): Remove these exceptions once we've untangled the dependency | 38 # TODO(nasko): Remove these exceptions once we've untangled the dependency |
| 36 # of RenderViewHost on the FrameTree. | 39 # of RenderViewHost on the FrameTree. |
| 37 "render_view_host_impl\.(cc|h)": [ | 40 "render_view_host_impl\.(cc|h)": [ |
| 38 "+content/browser/frame_host/frame_tree.h", | 41 "+content/browser/frame_host/frame_tree.h", |
| 39 ], | 42 ], |
| 40 "render_widget_host_view_aura\.cc": [ | 43 "render_widget_host_view_aura\.cc": [ |
| 41 "+content/browser/frame_host", | 44 "+content/browser/frame_host", |
| 42 ], | 45 ], |
| 43 } | 46 } |
| OLD | NEW |