| 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 "+content/renderer", # For single-process mode. | 3 "+content/renderer", # For single-process mode. |
| 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. |
| 11 "-content/browser/tab_contents", | 11 "-content/browser/web_contents", |
| 12 ] | 12 ] |
| 13 |
| 14 specific_include_rules = { |
| 15 ".*_(unit|browser|api)test\.cc": [ |
| 16 "+content/browser/web_contents", |
| 17 ], |
| 18 } |
| OLD | NEW |