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", |
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 "+components/rappor/test_rappor_service.h", |
19 "+content/browser/frame_host", | 20 "+content/browser/frame_host", |
20 "+content/browser/web_contents", | 21 "+content/browser/web_contents", |
21 "+content/public/browser/web_contents.h", | 22 "+content/public/browser/web_contents.h", |
22 "+content/public/browser/web_contents_view.h", | 23 "+content/public/browser/web_contents_view.h", |
23 ], | 24 ], |
24 "render_process_host_impl\.cc": [ | 25 "render_process_host_impl\.cc": [ |
25 "+content/browser/frame_host/render_frame_message_filter.h", | 26 "+content/browser/frame_host/render_frame_message_filter.h", |
26 ], | 27 ], |
27 "render_widget_host_view_mac\.mm": [ | 28 "render_widget_host_view_mac\.mm": [ |
28 "+content/browser/frame_host", | 29 "+content/browser/frame_host", |
(...skipping 18 matching lines...) Expand all Loading... |
47 # to content/renderer_host, at which time this can be removed. | 48 # to content/renderer_host, at which time this can be removed. |
48 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse | 49 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse |
49 # events to the correct owner RenderWidgetHostViewBase. It should be removed | 50 # events to the correct owner RenderWidgetHostViewBase. It should be removed |
50 # when all inner WebContents are based on OOPIF structure (as opposed to | 51 # when all inner WebContents are based on OOPIF structure (as opposed to |
51 # BrowserPlugin). | 52 # BrowserPlugin). |
52 "render_widget_host_input_event_router.cc": [ | 53 "render_widget_host_input_event_router.cc": [ |
53 "+content/browser/frame_host/render_widget_host_view_child_frame.h", | 54 "+content/browser/frame_host/render_widget_host_view_child_frame.h", |
54 "+content/browser/frame_host/render_widget_host_view_guest.h", | 55 "+content/browser/frame_host/render_widget_host_view_guest.h", |
55 ], | 56 ], |
56 } | 57 } |
OLD | NEW |