| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+app", | |
| 3 "+content", | 2 "+content", |
| 4 "+crypto", | 3 "+crypto", |
| 5 "+gpu", | 4 "+gpu", |
| 6 "+net", | 5 "+net", |
| 7 "+printing", | 6 "+printing", |
| 7 "+sql", |
| 8 "+views", | 8 "+views", |
| 9 | 9 |
| 10 # The subdirectories in chrome/ will manually allow their own include | 10 # The subdirectories in chrome/ will manually allow their own include |
| 11 # directories in chrome/ so we disallow all of them. | 11 # directories in chrome/ so we disallow all of them. |
| 12 "-chrome", | 12 "-chrome", |
| 13 "+chrome/common", | 13 "+chrome/common", |
| 14 "+chrome/test", | 14 "+chrome/test", |
| 15 | 15 |
| 16 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 16 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
| 17 "-v8", | 17 "-v8", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 29 "+webkit/quota", | 29 "+webkit/quota", |
| 30 | 30 |
| 31 # Allow inclusion of third-party code: | 31 # Allow inclusion of third-party code: |
| 32 "+third_party/mozilla", # Mozilla interface headers. | 32 "+third_party/mozilla", # Mozilla interface headers. |
| 33 "+third_party/npapi", # NPAPI interface headers. | 33 "+third_party/npapi", # NPAPI interface headers. |
| 34 "+third_party/tcmalloc", # tcmallo | 34 "+third_party/tcmalloc", # tcmallo |
| 35 "+third_party/GTM", # Google Toolbox for Mac. | 35 "+third_party/GTM", # Google Toolbox for Mac. |
| 36 | 36 |
| 37 "+ui", | 37 "+ui", |
| 38 ] | 38 ] |
| OLD | NEW |