| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+app", | 2 "+app", |
| 3 "+gfx", | 3 "+gfx", |
| 4 "+gpu", | 4 "+gpu", |
| 5 "+net", | 5 "+net", |
| 6 "+printing", | 6 "+printing", |
| 7 "+views", | 7 "+views", |
| 8 | 8 |
| 9 # The subdirectories in chrome/ will manually allow their own include | 9 # The subdirectories in chrome/ will manually allow their own include |
| 10 # directories in chrome/ so we disallow all of them. | 10 # directories in chrome/ so we disallow all of them. |
| 11 "-chrome", | 11 "-chrome", |
| 12 "+chrome/common", | 12 "+chrome/common", |
| 13 "+chrome/test", | 13 "+chrome/test", |
| 14 | 14 |
| 15 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 15 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
| 16 "-v8", | 16 "-v8", |
| 17 "-webkit", | 17 "-webkit", |
| 18 "-tools", | 18 "-tools", |
| 19 | 19 |
| 20 # Allow inclusion of WebKit API files. | 20 # Allow inclusion of WebKit API files. |
| 21 "+third_party/WebKit/WebKit/chromium", | 21 "+third_party/WebKit/WebKit/chromium", |
| 22 | 22 |
| 23 # Allow inclusion of the appcache library. | 23 # Allow inclusion of the appcache library. |
| 24 "+webkit/appcache", | 24 "+webkit/appcache", |
| 25 | 25 |
| 26 # Allow inclusion of the blob library. |
| 27 "+webkit/blob", |
| 28 |
| 26 # Allow inclusion of the database library. | 29 # Allow inclusion of the database library. |
| 27 "+webkit/database", | 30 "+webkit/database", |
| 28 | 31 |
| 29 # Allow Apple code ImageAndTextCell. | 32 # Allow Apple code ImageAndTextCell. |
| 30 "+third_party/apple", | 33 "+third_party/apple", |
| 31 | 34 |
| 32 # Allow inclusion of Mozilla interface headers. | 35 # Allow inclusion of Mozilla interface headers. |
| 33 "+third_party/mozilla", | 36 "+third_party/mozilla", |
| 34 | 37 |
| 35 # Allow inclusion of NPAPI interface headers. | 38 # Allow inclusion of NPAPI interface headers. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 46 | 49 |
| 47 # Our Skia extensions. | 50 # Our Skia extensions. |
| 48 "+skia/ext", | 51 "+skia/ext", |
| 49 | 52 |
| 50 # On Linux, we include some breakpad headers | 53 # On Linux, we include some breakpad headers |
| 51 "+breakpad/linux", | 54 "+breakpad/linux", |
| 52 | 55 |
| 53 # On Linux, the zygote needs to access sandbox headers | 56 # On Linux, the zygote needs to access sandbox headers |
| 54 "+sandbox/linux" | 57 "+sandbox/linux" |
| 55 ] | 58 ] |
| OLD | NEW |