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 "api", | 3 "api", |
4 "build", | 4 "build", |
5 # Skip port and pending because they use webkit style for includes. | 5 # Skip port and pending because they use webkit style for includes. |
6 "pending", | 6 "pending", |
7 "port", | 7 "port", |
8 ] | 8 ] |
9 | 9 |
10 include_rules = [ | 10 include_rules = [ |
11 # For bridge/c/c_utility.h in npruntime_util.cc | 11 # For bridge/c/c_utility.h in npruntime_util.cc |
12 "+bridge", | 12 "+bridge", |
13 "+grit", # For generated headers | 13 "+grit", # For generated headers |
14 | 14 |
15 # TODO(brettw) - review these; move up if it's ok, or remove the dependency | 15 # TODO(brettw) - review these; move up if it's ok, or remove the dependency |
16 "+net/base", | 16 "+net/base", |
17 "+net/http", | 17 "+net/http", |
18 "+net/proxy", | 18 "+net/proxy", |
| 19 "+net/socket", |
19 "+net/url_request", | 20 "+net/url_request", |
20 "+third_party/npapi/bindings", | 21 "+third_party/npapi/bindings", |
21 ] | 22 ] |
OLD | NEW |