| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+app", | 2 "+app", |
| 3 "+content", | 3 "+content", |
| 4 "+crypto", | 4 "+crypto", |
| 5 "+gpu", | 5 "+gpu", |
| 6 "+net", | 6 "+net", |
| 7 "+printing", | 7 "+printing", |
| 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", |
| 18 "-webkit", | 18 "-webkit", |
| 19 "-tools", | 19 "-tools", |
| 20 | 20 |
| 21 # Allow inclusion of WebKit API files. | 21 # Allow inclusion of WebKit API files. |
| 22 "+third_party/WebKit/Source/WebKit/chromium", | 22 "+third_party/WebKit/Source/WebKit/chromium", |
| 23 "+webkit/appcache", | 23 "+webkit/appcache", |
| 24 "+webkit/blob", | 24 "+webkit/blob", |
| 25 "+webkit/database", | 25 "+webkit/database", |
| 26 "+webkit/fileapi", | 26 "+webkit/fileapi", |
| 27 "+webkit/quota", |
| 27 | 28 |
| 28 # Allow inclusion of third-party code: | 29 # Allow inclusion of third-party code: |
| 29 "+third_party/mozilla", # Mozilla interface headers. | 30 "+third_party/mozilla", # Mozilla interface headers. |
| 30 "+third_party/npapi", # NPAPI interface headers. | 31 "+third_party/npapi", # NPAPI interface headers. |
| 31 "+third_party/tcmalloc", # tcmallo | 32 "+third_party/tcmalloc", # tcmallo |
| 32 "+third_party/GTM", # Google Toolbox for Mac. | 33 "+third_party/GTM", # Google Toolbox for Mac. |
| 33 | 34 |
| 34 "+ui", | 35 "+ui", |
| 35 ] | 36 ] |
| OLD | NEW |