| OLD | NEW |
| 1 # checkdeps.py shouldn't check include paths for files in these dirs: | 1 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 2 skip_child_includes = [ | 2 skip_child_includes = [ |
| 3 "build", | 3 "build", |
| 4 ] | 4 ] |
| 5 | 5 |
| 6 # Do NOT add chrome to the list below. We shouldn't be including files from | 6 # Do NOT add chrome to the list below. We shouldn't be including files from |
| 7 # src/chrome in src/webkit. | 7 # src/chrome in src/webkit. |
| 8 include_rules = [ | 8 include_rules = [ |
| 9 # For bridge/c/c_utility.h in npruntime_util.cc | 9 # For bridge/c/c_utility.h in npruntime_util.cc |
| 10 "+bridge", | 10 "+bridge", |
| 11 "+cc", | 11 "+cc", |
| 12 "-cc/surfaces", | 12 "-cc/surfaces", |
| 13 "+grit", # For generated headers | 13 "+grit", # For generated headers |
| 14 "+skia", | 14 "+skia", |
| 15 "+third_party/angle", | 15 "+third_party/angle", |
| 16 "+third_party/hyphen", | 16 "+third_party/hyphen", |
| 17 "+third_party/leveldatabase", | 17 "+third_party/leveldatabase", |
| 18 "+third_party/skia", | 18 "+third_party/skia", |
| 19 "+third_party/sqlite", | 19 "+third_party/sqlite", |
| 20 "+third_party/tcmalloc", | 20 "+third_party/tcmalloc", |
| 21 "+third_party/WebKit/public/platform", | 21 "+third_party/WebKit/public/platform", |
| 22 "+third_party/WebKit/public/web", | 22 "+third_party/WebKit/public/web", |
| 23 "+v8", | 23 "+v8", |
| 24 | 24 |
| 25 # For databases/ | 25 # For databases/ |
| 26 "+sql", | 26 "+sql", |
| 27 "+storage", |
| 27 | 28 |
| 28 # For gpu/ | 29 # For gpu/ |
| 29 "+ui/gfx", | 30 "+ui/gfx", |
| 30 "+ui/gl", | 31 "+ui/gl", |
| 31 "+gpu/GLES2", | 32 "+gpu/GLES2", |
| 32 "+gpu/command_buffer/client", | 33 "+gpu/command_buffer/client", |
| 33 "+gpu/command_buffer/common", | 34 "+gpu/command_buffer/common", |
| 34 "+gpu/command_buffer/service", | 35 "+gpu/command_buffer/service", |
| 35 "+gpu/skia_bindings", | 36 "+gpu/skia_bindings", |
| 36 "+third_party/khronos/GLES2", | 37 "+third_party/khronos/GLES2", |
| 37 | 38 |
| 38 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 39 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
| 39 "+net", | 40 "+net", |
| 40 "+third_party/npapi/bindings", | 41 "+third_party/npapi/bindings", |
| 41 | 42 |
| 42 # webkit/support is only test support code, nothing outside of webkit/support | 43 # webkit/support is only test support code, nothing outside of webkit/support |
| 43 # should pull it in. | 44 # should pull it in. |
| 44 "-webkit/support", | 45 "-webkit/support", |
| 45 ] | 46 ] |
| OLD | NEW |