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/mus/public", | 3 "+components/mus/public", |
4 "+components/display_compositor", | 4 "+components/display_compositor", |
5 "+media/base", # For media command line switches. | |
6 "+media/audio/audio_util.h", # For audio hardware sample-rate. | |
7 "+third_party/zlib", | 5 "+third_party/zlib", |
8 "+third_party/libyuv", | 6 "+third_party/libyuv", |
9 | 7 |
10 # 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 |
11 # delegate interfaces. | 9 # delegate interfaces. |
12 "-content/browser/frame_host", | 10 "-content/browser/frame_host", |
13 "-content/browser/web_contents", | 11 "-content/browser/web_contents", |
14 "-content/public/browser/web_contents.h", | 12 "-content/public/browser/web_contents.h", |
15 "-content/public/browser/web_contents_delegate.h", | 13 "-content/public/browser/web_contents_delegate.h", |
16 "-content/public/browser/web_contents_view.h", | 14 "-content/public/browser/web_contents_view.h", |
17 ] | 15 ] |
18 | 16 |
19 specific_include_rules = { | 17 specific_include_rules = { |
20 ".*_(unit|browser)test\.(cc|mm)": [ | 18 ".*_(unit|browser)test\.(cc|mm)": [ |
21 "+content/browser/frame_host", | 19 "+content/browser/frame_host", |
22 "+content/browser/web_contents", | 20 "+content/browser/web_contents", |
23 "+content/public/browser/web_contents.h", | 21 "+content/public/browser/web_contents.h", |
24 "+content/public/browser/web_contents_view.h", | 22 "+content/public/browser/web_contents_view.h", |
25 "+media/renderers", | |
26 ], | 23 ], |
27 "render_process_host_impl\.cc": [ | 24 "render_process_host_impl\.cc": [ |
28 "+content/browser/frame_host/render_frame_message_filter.h", | 25 "+content/browser/frame_host/render_frame_message_filter.h", |
29 ], | 26 ], |
30 "render_widget_host_view_mac\.mm": [ | 27 "render_widget_host_view_mac\.mm": [ |
31 "+content/browser/frame_host", | 28 "+content/browser/frame_host", |
32 "+content/public/browser/web_contents.h", | 29 "+content/public/browser/web_contents.h", |
33 ], | 30 ], |
34 "ime_adapter_android\.cc": [ | 31 "ime_adapter_android\.cc": [ |
35 "+content/browser/frame_host", | 32 "+content/browser/frame_host", |
36 "+content/public/browser/web_contents.h", | 33 "+content/public/browser/web_contents.h", |
37 ], | 34 ], |
38 # TODO(nasko): Remove these exceptions once we've untangled the dependency | 35 # TODO(nasko): Remove these exceptions once we've untangled the dependency |
39 # of RenderViewHost on the FrameTree. | 36 # of RenderViewHost on the FrameTree. |
40 "render_view_host_impl\.(cc|h)": [ | 37 "render_view_host_impl\.(cc|h)": [ |
41 "+content/browser/frame_host/frame_tree.h", | 38 "+content/browser/frame_host/frame_tree.h", |
42 ], | 39 ], |
43 "render_widget_host_view_aura\.cc": [ | 40 "render_widget_host_view_aura\.cc": [ |
44 "+content/browser/frame_host", | 41 "+content/browser/frame_host", |
45 ], | 42 ], |
46 } | 43 } |
OLD | NEW |