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 "+components/variations", | 4 "+components/variations", |
5 "+services/ui/public", | 5 "+services/ui/public", |
6 "+third_party/zlib", | 6 "+third_party/zlib", |
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 20 matching lines...) Expand all Loading... |
31 ], | 31 ], |
32 "ime_adapter_android\.cc": [ | 32 "ime_adapter_android\.cc": [ |
33 "+content/browser/frame_host", | 33 "+content/browser/frame_host", |
34 "+content/public/browser/web_contents.h", | 34 "+content/public/browser/web_contents.h", |
35 ], | 35 ], |
36 # TODO(nasko): Remove these exceptions once we've untangled the dependency | 36 # TODO(nasko): Remove these exceptions once we've untangled the dependency |
37 # of RenderViewHost on the FrameTree. | 37 # of RenderViewHost on the FrameTree. |
38 "render_view_host_impl\.(cc|h)": [ | 38 "render_view_host_impl\.(cc|h)": [ |
39 "+content/browser/frame_host/frame_tree.h", | 39 "+content/browser/frame_host/frame_tree.h", |
40 ], | 40 ], |
| 41 "render_widget_helper\.cc": [ |
| 42 # RenderWidgetHelper is involved in RenderFrameHost creation. |
| 43 "+content/browser/frame_host/render_frame_host_impl.h", |
| 44 ], |
41 "render_widget_host_view_aura\.cc": [ | 45 "render_widget_host_view_aura\.cc": [ |
42 "+content/browser/frame_host", | 46 "+content/browser/frame_host", |
43 ], | 47 ], |
44 "render_widget_host_view_event_handler\.cc": [ | 48 "render_widget_host_view_event_handler\.cc": [ |
45 "+content/browser/frame_host", | 49 "+content/browser/frame_host", |
46 ], | 50 ], |
47 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved | 51 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved |
48 # to content/renderer_host, at which time this can be removed. | 52 # to content/renderer_host, at which time this can be removed. |
49 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse | 53 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse |
50 # events to the correct owner RenderWidgetHostViewBase. It should be removed | 54 # events to the correct owner RenderWidgetHostViewBase. It should be removed |
51 # when all inner WebContents are based on OOPIF structure (as opposed to | 55 # when all inner WebContents are based on OOPIF structure (as opposed to |
52 # BrowserPlugin). | 56 # BrowserPlugin). |
53 "render_widget_host_input_event_router.cc": [ | 57 "render_widget_host_input_event_router.cc": [ |
54 "+content/browser/frame_host/render_widget_host_view_child_frame.h", | 58 "+content/browser/frame_host/render_widget_host_view_child_frame.h", |
55 "+content/browser/frame_host/render_widget_host_view_guest.h", | 59 "+content/browser/frame_host/render_widget_host_view_guest.h", |
56 ], | 60 ], |
57 } | 61 } |
OLD | NEW |