| OLD | NEW |
| 1 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 2 skip_child_includes = [ |
| 3 "build", |
| 4 ] |
| 5 |
| 1 # 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 |
| 2 # src/chrome in src/webkit. | 7 # src/chrome in src/webkit. |
| 3 include_rules = [ | 8 include_rules = [ |
| 9 # For bridge/c/c_utility.h in npruntime_util.cc |
| 10 "+bridge", |
| 4 "+cc", | 11 "+cc", |
| 5 "+grit", # For generated headers | 12 "+grit", # For generated headers |
| 6 "+skia", | 13 "+skia", |
| 14 "+third_party/angle_dx11", |
| 15 "+third_party/hyphen", |
| 7 "+third_party/leveldatabase", | 16 "+third_party/leveldatabase", |
| 8 "+third_party/skia", | 17 "+third_party/skia", |
| 9 "+third_party/sqlite", | 18 "+third_party/sqlite", |
| 10 "+third_party/tcmalloc", | 19 "+third_party/tcmalloc", |
| 11 "+third_party/WebKit/public/platform", | 20 "+third_party/WebKit/public/platform", |
| 12 "+third_party/WebKit/public/web", | 21 "+third_party/WebKit/public/web", |
| 13 "+v8", | 22 "+v8", |
| 14 | 23 |
| 15 # For databases/ | 24 # For databases/ |
| 16 "+sql", | 25 "+sql", |
| 17 | 26 |
| 18 # For gpu/ | 27 # For gpu/ |
| 19 "+ui/gfx", | 28 "+ui/gfx", |
| 20 "+ui/gl", | 29 "+ui/gl", |
| 21 "+gpu/command_buffer/client", | 30 "+gpu/command_buffer/client", |
| 22 "+gpu/command_buffer/common", | 31 "+gpu/command_buffer/common", |
| 23 "+gpu/command_buffer/service", | 32 "+gpu/command_buffer/service", |
| 24 "+gpu/GLES2", | 33 "+gpu/GLES2", |
| 25 "+third_party/khronos/GLES2", | 34 "+third_party/khronos/GLES2", |
| 26 | 35 |
| 36 # For shared USB keycode conversion tables used by ppapi plugin code. |
| 37 "+ui/base/keycodes", |
| 38 |
| 27 # 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 |
| 28 "+net", | 40 "+net", |
| 29 "+third_party/npapi/bindings", | 41 "+third_party/npapi/bindings", |
| 30 | 42 |
| 31 # 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 |
| 32 # should pull it in. | 44 # should pull it in. |
| 33 "-webkit/support", | 45 "-webkit/support", |
| 34 ] | 46 ] |
| OLD | NEW |