blob: 120eb9fbbaf2f7dfcf016a5e30d052067fe9e5e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# checkdeps.py shouldn't check include paths for files in these dirs:
skip_child_includes = [
"build",
# Skip port and pending because they use webkit style for includes.
"pending",
"port",
]
include_rules = [
# For bridge/c/c_utility.h in npruntime_util.cc
"+bridge",
# TODO(brettw) - review these; move up if it's ok, or remove the dependency
"+net/base",
"+net/http",
"+net/proxy",
"+net/url_request",
"+third_party/npapi/bindings",
]
|