| 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", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "+sql", | 23 "+sql", |
| 24 | 24 |
| 25 # For gpu/ | 25 # For gpu/ |
| 26 "+ui/gfx", | 26 "+ui/gfx", |
| 27 "+ui/gl", | 27 "+ui/gl", |
| 28 "+gpu/command_buffer/client", | 28 "+gpu/command_buffer/client", |
| 29 "+gpu/command_buffer/common", | 29 "+gpu/command_buffer/common", |
| 30 "+gpu/command_buffer/service", | 30 "+gpu/command_buffer/service", |
| 31 "+third_party/khronos/GLES2", | 31 "+third_party/khronos/GLES2", |
| 32 | 32 |
| 33 # For shared USB keycode conversion tables used by ppapi plugin code. |
| 34 "+ui/base/keycodes", |
| 35 |
| 33 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 36 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
| 34 "+crypto", | 37 "+crypto", |
| 35 "+net/base", | 38 "+net/base", |
| 36 "+net/cookies", | 39 "+net/cookies", |
| 37 "+net/ftp", | 40 "+net/ftp", |
| 38 "+net/http", | 41 "+net/http", |
| 39 "+net/proxy", | 42 "+net/proxy", |
| 40 "+net/socket", | 43 "+net/socket", |
| 41 "+net/socket_stream", | 44 "+net/socket_stream", |
| 42 "+net/test", | 45 "+net/test", |
| 43 "+net/url_request", | 46 "+net/url_request", |
| 44 "+net/websockets", | 47 "+net/websockets", |
| 45 "+third_party/npapi/bindings", | 48 "+third_party/npapi/bindings", |
| 46 ] | 49 ] |
| OLD | NEW |