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