| 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 | 6 |
| 7 # The renderer_host files should only call upwards in the layering via the | 7 # The renderer_host files should only call upwards in the layering via the |
| 8 # delegate interfaces. | 8 # delegate interfaces. |
| 9 "-content/browser/frame_host", | 9 "-content/browser/frame_host", |
| 10 "-content/browser/web_contents", | 10 "-content/browser/web_contents", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "+content/public/browser/web_contents.h", | 32 "+content/public/browser/web_contents.h", |
| 33 ], | 33 ], |
| 34 # TODO(nasko): Remove these exceptions once we've untangled the dependency | 34 # TODO(nasko): Remove these exceptions once we've untangled the dependency |
| 35 # of RenderViewHost on the FrameTree. | 35 # of RenderViewHost on the FrameTree. |
| 36 "render_view_host_impl\.(cc|h)": [ | 36 "render_view_host_impl\.(cc|h)": [ |
| 37 "+content/browser/frame_host/frame_tree.h", | 37 "+content/browser/frame_host/frame_tree.h", |
| 38 ], | 38 ], |
| 39 "render_widget_host_view_aura\.cc": [ | 39 "render_widget_host_view_aura\.cc": [ |
| 40 "+content/browser/frame_host", | 40 "+content/browser/frame_host", |
| 41 ], | 41 ], |
| 42 "render_widget_host_view_event_handler\.cc": [ |
| 43 "+content/browser/frame_host", |
| 44 ], |
| 42 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved | 45 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved |
| 43 # to content/renderer_host, at which time this can be removed. | 46 # to content/renderer_host, at which time this can be removed. |
| 44 "render_widget_host_input_event_router.cc": [ | 47 "render_widget_host_input_event_router.cc": [ |
| 45 "+content/browser/frame_host/render_widget_host_view_child_frame.h", | 48 "+content/browser/frame_host/render_widget_host_view_child_frame.h", |
| 46 ], | 49 ], |
| 47 } | 50 } |
| OLD | NEW |