Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+ash", | 2 "+ash", |
| 3 "+crypto", | 3 "+crypto", |
| 4 "+gpu", | 4 "+gpu", |
| 5 "+net", | 5 "+net", |
| 6 "+printing", | 6 "+printing", |
| 7 "+sql", | 7 "+sql", |
| 8 # Browser, renderer, common and tests access V8 for various purposes. | |
| 9 "+v8/include", | |
| 8 | 10 |
| 9 # The subdirectories in chrome/ will manually allow their own include | 11 # The subdirectories in chrome/ will manually allow their own include |
| 10 # directories in chrome/ so we disallow all of them. | 12 # directories in chrome/ so we disallow all of them. |
| 11 "-chrome", | 13 "-chrome", |
| 12 "+chrome/common", | 14 "+chrome/common", |
| 13 "+chrome/test", | 15 "+chrome/test", |
| 14 "-content", | 16 "-content", |
| 15 # TODO(jam): remove me once chrome only consumes content/common through its | 17 # TODO(jam): remove me once chrome only consumes content/common through its |
| 16 # public headers. | 18 # public headers. |
| 17 "+content/common", | 19 "+content/common", |
| 18 "+content/public/common", | 20 "+content/public/common", |
| 19 "+content/test", | 21 "+content/test", |
| 20 | 22 |
| 21 # TODO(ben): remove this | 23 # TODO(ben): remove this |
| 22 "+content/public/browser/native_web_keyboard_event.h", | 24 "+content/public/browser/native_web_keyboard_event.h", |
| 23 | 25 |
| 24 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 26 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
| 25 "-v8", | |
|
jam
2012/02/29 20:17:57
you still want to keep that in, so that they don't
Sigurður Ásgeirsson
2012/02/29 20:20:31
Done.
| |
| 26 "-webkit", | 27 "-webkit", |
| 27 "-tools", | 28 "-tools", |
| 28 | 29 |
| 29 "-crypto/third_party", | 30 "-crypto/third_party", |
| 30 | 31 |
| 31 # Allow inclusion of WebKit API files. | 32 # Allow inclusion of WebKit API files. |
| 32 "+third_party/WebKit/Source/WebKit/chromium", | 33 "+third_party/WebKit/Source/WebKit/chromium", |
| 33 "+webkit/appcache", | 34 "+webkit/appcache", |
| 34 "+webkit/blob", | 35 "+webkit/blob", |
| 35 "+webkit/chromeos/fileapi", | 36 "+webkit/chromeos/fileapi", |
| 36 "+webkit/database", | 37 "+webkit/database", |
| 37 "+webkit/fileapi", | 38 "+webkit/fileapi", |
| 38 "+webkit/quota", | 39 "+webkit/quota", |
| 39 | 40 |
| 40 # Allow inclusion of third-party code: | 41 # Allow inclusion of third-party code: |
| 41 "+third_party/icon_family", # IconFamily for Mac. | 42 "+third_party/icon_family", # IconFamily for Mac. |
| 42 "+third_party/mozilla", # Mozilla interface headers. | 43 "+third_party/mozilla", # Mozilla interface headers. |
| 43 "+third_party/npapi", # NPAPI interface headers. | 44 "+third_party/npapi", # NPAPI interface headers. |
| 44 "+third_party/tcmalloc", # tcmallo | 45 "+third_party/tcmalloc", # tcmallo |
| 45 "+third_party/GTM", # Google Toolbox for Mac. | 46 "+third_party/GTM", # Google Toolbox for Mac. |
| 46 | 47 |
| 47 "+ui", | 48 "+ui", |
| 48 ] | 49 ] |
| OLD | NEW |