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 # 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/web_contents", | 10 "-content/browser/web_contents", |
11 "-content/public/browser/web_contents.h", | 11 "-content/public/browser/web_contents.h", |
| 12 "-content/public/browser/web_contents_delegate.h", |
12 "-content/public/browser/web_contents_view.h", | 13 "-content/public/browser/web_contents_view.h", |
13 ] | 14 ] |
14 | 15 |
15 specific_include_rules = { | 16 specific_include_rules = { |
16 ".*_(unit|browser)test\.cc": [ | 17 ".*_(unit|browser)test\.cc": [ |
17 "+content/browser/web_contents", | 18 "+content/browser/web_contents", |
18 "+content/public/browser/web_contents.h", | 19 "+content/public/browser/web_contents.h", |
19 "+content/public/browser/web_contents_view.h", | 20 "+content/public/browser/web_contents_view.h", |
20 "+media/filters", | 21 "+media/filters", |
21 ], | 22 ], |
22 "render_sandbox_host_linux\.cc": [ | 23 "render_sandbox_host_linux\.cc": [ |
23 "+third_party/WebKit/public/web/WebKit.h", | 24 "+third_party/WebKit/public/web/WebKit.h", |
24 "+third_party/WebKit/public/web/linux/WebFontInfo.h", | 25 "+third_party/WebKit/public/web/linux/WebFontInfo.h", |
25 ], | 26 ], |
26 } | 27 } |
OLD | NEW |