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