blob: 6e69dfd5620ecb434c1d2de44f6fcc0429ceba86 [file] [log] [blame]
# checkdeps.py shouldn't check include paths for files in these dirs:
skip_child_includes = [
"build",
]
# Do NOT add chrome to the list below. We shouldn't be including files from
# src/chrome in src/webkit.
include_rules = [
# For bridge/c/c_utility.h in npruntime_util.cc
"+bridge",
"+cc",
"-cc/surfaces",
"+grit", # For generated headers
"+skia",
"+third_party/angle",
"+third_party/hyphen",
"+third_party/leveldatabase",
"+third_party/skia",
"+third_party/sqlite",
"+third_party/tcmalloc",
"+third_party/WebKit/public/platform",
"+third_party/WebKit/public/web",
"+v8",
# For databases/
"+sql",
# For gpu/
"+ui/gfx",
"+ui/gl",
"+gpu/GLES2",
"+gpu/command_buffer/client",
"+gpu/command_buffer/common",
"+gpu/command_buffer/service",
"+gpu/skia_bindings",
"+third_party/khronos/GLES2",
# TODO(brettw) - review these; move up if it's ok, or remove the dependency
"+net",
"+third_party/npapi/bindings",
# webkit/support is only test support code, nothing outside of webkit/support
# should pull it in.
"-webkit/support",
]