| 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. | |
| 4 "+media/base", # For media command line switches. | 3 "+media/base", # For media command line switches. |
| 5 "+media/audio/audio_util.h", # For audio hardware sample-rate. | 4 "+media/audio/audio_util.h", # For audio hardware sample-rate. |
| 6 "+third_party/zlib", | 5 "+third_party/zlib", |
| 7 "+third_party/libyuv", | 6 "+third_party/libyuv", |
| 8 | 7 |
| 8 # For single-process mode. |
| 9 "+content/renderer/render_process_impl.h", |
| 10 "+content/renderer/render_thread_impl.h", |
| 11 |
| 9 # The renderer_host files should only call upwards in the layering via the | 12 # The renderer_host files should only call upwards in the layering via the |
| 10 # delegate interfaces. | 13 # delegate interfaces. |
| 11 "-content/browser/web_contents", | 14 "-content/browser/web_contents", |
| 12 ] | 15 ] |
| 13 | 16 |
| 14 specific_include_rules = { | 17 specific_include_rules = { |
| 15 ".*_(unit|browser)test\.cc": [ | 18 ".*_(unit|browser)test\.cc": [ |
| 16 "+content/browser/web_contents", | 19 "+content/browser/web_contents", |
| 17 ], | 20 ], |
| 18 } | 21 } |
| OLD | NEW |