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 "+media/base", # For media command line switches. | 3 "+media/base", # For media command line switches. |
4 "+media/audio/audio_util.h", # For audio hardware sample-rate. | 4 "+media/audio/audio_util.h", # For audio hardware sample-rate. |
5 "+third_party/zlib", | 5 "+third_party/zlib", |
6 "+third_party/libyuv", | 6 "+third_party/libyuv", |
7 | 7 |
8 # For single-process mode. | |
9 "+content/renderer/render_process_impl.h", | |
10 "+content/renderer/render_thread_impl.h", | |
11 | |
12 # 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 |
13 # delegate interfaces. | 9 # delegate interfaces. |
14 "-content/browser/web_contents", | 10 "-content/browser/web_contents", |
15 "-content/public/browser/web_contents.h", | 11 "-content/public/browser/web_contents.h", |
16 "-content/public/browser/web_contents_view.h", | 12 "-content/public/browser/web_contents_view.h", |
17 ] | 13 ] |
18 | 14 |
19 specific_include_rules = { | 15 specific_include_rules = { |
20 ".*_(unit|browser)test\.cc": [ | 16 ".*_(unit|browser)test\.cc": [ |
21 "+content/browser/web_contents", | 17 "+content/browser/web_contents", |
22 "+content/public/browser/web_contents.h", | 18 "+content/public/browser/web_contents.h", |
23 "+content/public/browser/web_contents_view.h", | 19 "+content/public/browser/web_contents_view.h", |
24 "+media/filters", | 20 "+media/filters", |
25 ], | 21 ], |
26 "render_sandbox_host_linux\.cc": [ | 22 "render_sandbox_host_linux\.cc": [ |
27 "+third_party/WebKit/public/web/WebKit.h", | 23 "+third_party/WebKit/public/web/WebKit.h", |
28 "+third_party/WebKit/public/web/linux/WebFontInfo.h", | 24 "+third_party/WebKit/public/web/linux/WebFontInfo.h", |
29 ], | 25 ], |
30 } | 26 } |
OLD | NEW |