| 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", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "+content/public/browser/web_contents.h", | 33 "+content/public/browser/web_contents.h", |
| 34 ], | 34 ], |
| 35 # TODO(nasko): Remove these exceptions once we've untangled the dependency | 35 # TODO(nasko): Remove these exceptions once we've untangled the dependency |
| 36 # of RenderViewHost on the FrameTree. | 36 # of RenderViewHost on the FrameTree. |
| 37 "render_view_host_impl\.(cc|h)": [ | 37 "render_view_host_impl\.(cc|h)": [ |
| 38 "+content/browser/frame_host/frame_tree.h", | 38 "+content/browser/frame_host/frame_tree.h", |
| 39 ], | 39 ], |
| 40 "render_widget_host_view_aura\.cc": [ | 40 "render_widget_host_view_aura\.cc": [ |
| 41 "+content/browser/frame_host", | 41 "+content/browser/frame_host", |
| 42 ], | 42 ], |
| 43 "render_widget_host_view_event_handler\.cc": [ |
| 44 "+content/browser/frame_host", |
| 45 ], |
| 43 } | 46 } |
| OLD | NEW |