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 19 matching lines...) Expand all Loading... | |
30 ], | 30 ], |
31 "ime_adapter_android\.cc": [ | 31 "ime_adapter_android\.cc": [ |
32 "+content/browser/frame_host", | 32 "+content/browser/frame_host", |
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_helper\.cc": [ | |
41 # RenderWidgetHelper is involved in RenderFrameHost creation. | |
42 "+content/browser/frame_host/frame_tree_node.h", | |
alexmos
2016/12/15 18:36:48
This isn't needed anymore, right?
ncarter (slow)
2016/12/15 22:22:17
Done.
| |
43 "+content/browser/frame_host/render_frame_host_impl.h", | |
44 ], | |
40 "render_widget_host_view_aura\.cc": [ | 45 "render_widget_host_view_aura\.cc": [ |
41 "+content/browser/frame_host", | 46 "+content/browser/frame_host", |
42 ], | 47 ], |
43 "render_widget_host_view_event_handler\.cc": [ | 48 "render_widget_host_view_event_handler\.cc": [ |
44 "+content/browser/frame_host", | 49 "+content/browser/frame_host", |
45 ], | 50 ], |
46 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved | 51 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved |
47 # to content/renderer_host, at which time this can be removed. | 52 # to content/renderer_host, at which time this can be removed. |
48 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse | 53 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse |
49 # events to the correct owner RenderWidgetHostViewBase. It should be removed | 54 # events to the correct owner RenderWidgetHostViewBase. It should be removed |
50 # 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 |
51 # BrowserPlugin). | 56 # BrowserPlugin). |
52 "render_widget_host_input_event_router.cc": [ | 57 "render_widget_host_input_event_router.cc": [ |
53 "+content/browser/frame_host/render_widget_host_view_child_frame.h", | 58 "+content/browser/frame_host/render_widget_host_view_child_frame.h", |
54 "+content/browser/frame_host/render_widget_host_view_guest.h", | 59 "+content/browser/frame_host/render_widget_host_view_guest.h", |
55 ], | 60 ], |
56 } | 61 } |
OLD | NEW |