| 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 "+grit", # For generated headers | 11 "+grit", # For generated headers |
| 12 "+skia", | 12 "+skia", |
| 13 "+third_party/sqlite", | 13 "+third_party/sqlite", |
| 14 "+third_party/tcmalloc", | 14 "+third_party/tcmalloc", |
| 15 | 15 |
| 16 # For databases/ | 16 # For databases/ |
| 17 "+sql", | 17 "+sql", |
| 18 | 18 |
| 19 # For gpu/ | 19 # For gpu/ |
| 20 "+ui/gfx", | 20 "+ui/gfx", |
| 21 "+gpu/command_buffer/client", | 21 "+gpu/command_buffer/client", |
| 22 "+gpu/command_buffer/common", | 22 "+gpu/command_buffer/common", |
| 23 "+gpu/command_buffer/service", | 23 "+gpu/command_buffer/service", |
| 24 "+gpu/GLES2", | 24 "+third_party/khronos/GLES2", |
| 25 | 25 |
| 26 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 26 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
| 27 "+crypto", | 27 "+crypto", |
| 28 "+net/base", | 28 "+net/base", |
| 29 "+net/ftp", | 29 "+net/ftp", |
| 30 "+net/http", | 30 "+net/http", |
| 31 "+net/proxy", | 31 "+net/proxy", |
| 32 "+net/socket", | 32 "+net/socket", |
| 33 "+net/socket_stream", | 33 "+net/socket_stream", |
| 34 "+net/test", | 34 "+net/test", |
| 35 "+net/url_request", | 35 "+net/url_request", |
| 36 "+net/websockets", | 36 "+net/websockets", |
| 37 "+third_party/npapi/bindings", | 37 "+third_party/npapi/bindings", |
| 38 ] | 38 ] |
| OLD | NEW |