include_rules = [
  "+ash",
  "+crypto",
  "+gpu",
  "+net",
  "+printing",
  "+sql",
  # Browser, renderer, common and tests access V8 for various purposes.
  "-v8",
  "+v8/include",

  # The subdirectories in chrome/ will manually allow their own include
  # directories in chrome/ so we disallow all of them.
  "-chrome",
  "+chrome/common",
  "+chrome/test",
  "-content",
  # TODO(jam): remove me once chrome only consumes content/common through its
  # public headers.
  "+content/common",
  "+content/public/common",
  "+content/test",

  # TODO(ben): remove this
  "+content/public/browser/native_web_keyboard_event.h",

  # Don't allow inclusion of these other libs we shouldn't be calling directly.
  "-webkit",
  "-tools",

  "-crypto/third_party",

  # Allow inclusion of WebKit API files.
  "+third_party/WebKit/Source/WebKit/chromium",
  "+webkit/appcache",
  "+webkit/blob",
  "+webkit/chromeos/fileapi",
  "+webkit/database",
  "+webkit/fileapi",
  "+webkit/quota",

  # Allow inclusion of third-party code:
  "+third_party/icon_family", # IconFamily for Mac.
  "+third_party/mozilla",     # Mozilla interface headers.
  "+third_party/npapi",       # NPAPI interface headers.
  "+third_party/tcmalloc",    # tcmallo
  "+third_party/GTM",         # Google Toolbox for Mac.

  "+ui",
]