| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+app", | 2 "+app", |
| 3 "+net", | 3 "+net", |
| 4 "+printing", | 4 "+printing", |
| 5 "+views", | 5 "+views", |
| 6 | 6 |
| 7 # The subdirectories in chrome/ will manually allow their own include | 7 # The subdirectories in chrome/ will manually allow their own include |
| 8 # directories in chrome/ so we disallow all of them. | 8 # directories in chrome/ so we disallow all of them. |
| 9 "-chrome", | 9 "-chrome", |
| 10 "+chrome/common", | 10 "+chrome/common", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "+third_party/GTM", | 28 "+third_party/GTM", |
| 29 | 29 |
| 30 # Our Skia extensions. | 30 # Our Skia extensions. |
| 31 "+skia/ext", | 31 "+skia/ext", |
| 32 | 32 |
| 33 # On Linux, we include some breakpad headers | 33 # On Linux, we include some breakpad headers |
| 34 "+breakpad/linux", | 34 "+breakpad/linux", |
| 35 | 35 |
| 36 # On Linux, the zygote needs to access sandbox headers | 36 # On Linux, the zygote needs to access sandbox headers |
| 37 "+sandbox/linux" | 37 "+sandbox/linux" |
| 38 |
| 39 # NativeClient uses the sandbox. |
| 40 # TODO(gregoryd): confirm this is really needed. |
| 41 "+sandbox/linux" |
| 38 ] | 42 ] |
| OLD | NEW |