| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "-content", | 2 "-content", |
| 3 "+content/public", | 3 "+content/public", |
| 4 "+device/geolocation/android/geolocation_jni_registrar.h", |
| 4 "+services/shell", | 5 "+services/shell", |
| 5 "+v8/include/v8.h", | 6 "+v8/include/v8.h", |
| 6 ] | 7 ] |
| 7 | 8 |
| 8 # Ensure we don't leak internal content headers through public headers. | 9 # Ensure we don't leak internal content headers through public headers. |
| 9 specific_include_rules = { | 10 specific_include_rules = { |
| 10 ".*\.cc": [ | 11 ".*\.cc": [ |
| 11 # Allow inclusion of specific components that we depend on. | 12 # Allow inclusion of specific components that we depend on. |
| 12 # See comment in content/DEPS for which components are allowed. | 13 # See comment in content/DEPS for which components are allowed. |
| 13 "+components/scheduler/renderer", | 14 "+components/scheduler/renderer", |
| 14 | 15 |
| 15 # Testing utilities can access anything in content/ | 16 # Testing utilities can access anything in content/ |
| 16 "+content", | 17 "+content", |
| 17 "+gin/v8_initializer.h", | 18 "+gin/v8_initializer.h", |
| 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 |