| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "-content", | 2 "-content", |
| 3 "+content/public", | 3 "+content/public", |
| 4 "+mojo/application", |
| 4 "+v8/include/v8.h", | 5 "+v8/include/v8.h", |
| 5 ] | 6 ] |
| 6 | 7 |
| 7 # Ensure we don't leak internal content headers through public headers. | 8 # Ensure we don't leak internal content headers through public headers. |
| 8 specific_include_rules = { | 9 specific_include_rules = { |
| 9 ".*\.cc": [ | 10 ".*\.cc": [ |
| 10 # Allow inclusion of specific components that we depend on. We may only | 11 # Allow inclusion of specific components that we depend on. We may only |
| 11 # depend on components which we share with the mojo html_viewer. | 12 # depend on components which we share with the mojo html_viewer. |
| 12 "+components/scheduler/renderer", | 13 "+components/scheduler/renderer", |
| 13 | 14 |
| 14 # Testing utilities can access anything in content/ | 15 # Testing utilities can access anything in content/ |
| 15 "+content", | 16 "+content", |
| 16 "+gin/v8_initializer.h", | 17 "+gin/v8_initializer.h", |
| 17 "+media/base", | 18 "+media/base", |
| 18 "+third_party/iaccessible2", | 19 "+third_party/iaccessible2", |
| 19 "+ui/base/resource/resource_bundle.h", | 20 "+ui/base/resource/resource_bundle.h", |
| 20 ], | 21 ], |
| 21 } | 22 } |
| OLD | NEW |