DEPS 1.13 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
# 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",
  "+grit",  # For generated headers
  "+skia",
14
  "+third_party/angle_dx11",
15 16 17 18 19
  "+third_party/hyphen",
  "+third_party/leveldatabase",
  "+third_party/skia",
  "+third_party/sqlite",
  "+third_party/tcmalloc",
20
  "+third_party/WebKit/public/platform",
21
  "+third_party/WebKit/public/web",
22 23 24 25 26 27 28 29 30 31 32
  "+v8",

  # For databases/
  "+sql",

  # For gpu/
  "+ui/gfx",
  "+ui/gl",
  "+gpu/command_buffer/client",
  "+gpu/command_buffer/common",
  "+gpu/command_buffer/service",
33
  "+gpu/GLES2",
34 35 36 37 38 39
  "+third_party/khronos/GLES2",

  # For shared USB keycode conversion tables used by ppapi plugin code.
  "+ui/base/keycodes",

  # TODO(brettw) - review these; move up if it's ok, or remove the dependency
40
  "+net",
41
  "+third_party/npapi/bindings",
42 43 44 45

  # webkit/support is only test support code, nothing outside of webkit/support
  # should pull it in.
  "-webkit/support",
46
]