| 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 "+gfx", | 11 "+gfx", |
| 12 "+grit", # For generated headers | 12 "+grit", # For generated headers |
| 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 "+app/sql", | 17 "+app/sql", |
| 18 | 18 |
| 19 # For gpu/ |
| 20 "+app/gfx", |
| 21 |
| 19 # 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 |
| 20 "+net/base", | 23 "+net/base", |
| 21 "+net/ftp", | 24 "+net/ftp", |
| 22 "+net/http", | 25 "+net/http", |
| 23 "+net/proxy", | 26 "+net/proxy", |
| 24 "+net/socket", | 27 "+net/socket", |
| 25 "+net/socket_stream", | 28 "+net/socket_stream", |
| 26 "+net/test", | 29 "+net/test", |
| 27 "+net/url_request", | 30 "+net/url_request", |
| 28 "+net/websockets", | 31 "+net/websockets", |
| 29 "+third_party/npapi/bindings", | 32 "+third_party/npapi/bindings", |
| 30 ] | 33 ] |
| OLD | NEW |