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 "+media/base", # For media command line switches. | 4 "+media/base", # For media command line switches. |
5 "+media/audio/audio_util.h", # For audio hardware sample-rate. | 5 "+media/audio/audio_util.h", # For audio hardware sample-rate. |
6 "+third_party/zlib", | 6 "+third_party/zlib", |
7 "+third_party/libyuv", | 7 "+third_party/libyuv", |
8 | 8 |
9 # The renderer_host files should only call upwards in the layering via the | 9 # The renderer_host files should only call upwards in the layering via the |
10 # delegate interfaces. | 10 # delegate interfaces. |
(...skipping 28 matching lines...) Expand all Loading... | |
39 ], | 39 ], |
40 "ime_adapter_android\.cc": [ | 40 "ime_adapter_android\.cc": [ |
41 "+content/browser/frame_host", | 41 "+content/browser/frame_host", |
42 "+content/public/browser/web_contents.h", | 42 "+content/public/browser/web_contents.h", |
43 ], | 43 ], |
44 # TODO(nasko): Remove these exceptions once we've untangled the dependency | 44 # TODO(nasko): Remove these exceptions once we've untangled the dependency |
45 # of RenderViewHost on the FrameTree. | 45 # of RenderViewHost on the FrameTree. |
46 "render_view_host_impl\.(cc|h)": [ | 46 "render_view_host_impl\.(cc|h)": [ |
47 "+content/browser/frame_host/frame_tree.h", | 47 "+content/browser/frame_host/frame_tree.h", |
48 ], | 48 ], |
49 "render_widget_host_view_aura\.cc": [ | 49 "render_widget_host_view_aura\.cc":[ |
kenrb
2016/02/01 20:12:43
The space character shouldn't be removed.
EhsanK
2016/02/12 15:46:59
Done.
| |
50 "+content/browser/frame_host", | 50 "+content/browser/frame_host", |
51 ], | 51 ], |
52 "render_widget_host_view_base\.cc": [ | |
53 "+content/browser/frame_host/render_frame_host_impl.h", | |
54 "+content/browser/frame_host/frame_tree.h", | |
55 ], | |
kenrb
2016/02/01 20:12:43
I see that this is mostly replicating the exceptio
EhsanK
2016/02/12 15:46:59
Based on this comment, I decided to add the requir
| |
52 } | 56 } |
OLD | NEW |