| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+crypto", | 2 "+crypto", |
| 3 "+gpu", | 3 "+gpu", |
| 4 "+net", | 4 "+net", |
| 5 "+pdf", | 5 "+pdf", |
| 6 "+printing", | 6 "+printing", |
| 7 "+sql", | 7 "+sql", |
| 8 # Browser, renderer, common and tests access V8 for various purposes. | 8 # No V8 in browser, allow in renderer, child, etc. separately. |
| 9 "-v8", | 9 "-v8", |
| 10 "+v8/include", | |
| 11 | 10 |
| 12 # Limit what we include from nacl. | 11 # Limit what we include from nacl. |
| 13 "-native_client", | 12 "-native_client", |
| 14 | 13 |
| 15 # The subdirectories in chrome/ will manually allow their own include | 14 # The subdirectories in chrome/ will manually allow their own include |
| 16 # directories in chrome/ so we disallow all of them. | 15 # directories in chrome/ so we disallow all of them. |
| 17 "-chrome", | 16 "-chrome", |
| 18 "+chrome/common", | 17 "+chrome/common", |
| 19 "+chrome/test", | 18 "+chrome/test", |
| 20 "+components/content_settings/core/common", | 19 "+components/content_settings/core/common", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 "+third_party/WebKit/public/platform", | 36 "+third_party/WebKit/public/platform", |
| 38 "+third_party/WebKit/public/public_features.h", | 37 "+third_party/WebKit/public/public_features.h", |
| 39 "+third_party/WebKit/public/web", | 38 "+third_party/WebKit/public/web", |
| 40 | 39 |
| 41 # Allow inclusion of third-party code: | 40 # Allow inclusion of third-party code: |
| 42 "+third_party/hunspell", | 41 "+third_party/hunspell", |
| 43 "+third_party/skia", | 42 "+third_party/skia", |
| 44 | 43 |
| 45 "+ui", | 44 "+ui", |
| 46 ] | 45 ] |
| OLD | NEW |