blob: c0c853316c3d02d7ec0251f66ff380a264654182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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",
]
|