blob: c1761556224af3685f65e9896a19d5536bec5ea5 (
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",
"pending",
]
include_rules = [
# For bridge/c/c_utility.h in npruntime_util.cc
"+bridge",
# For bindings/npruntime.h in ScriptController.h
"+bindings",
]
|