
R=jam@chromium.org Review URL: https://codereview.chromium.org/10989080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159442 0039d316-1c4b-4281-b951-d872f2087c98
74 lines
1.8 KiB
Python
74 lines
1.8 KiB
Python
# Do NOT add chrome to the list below. We shouldn't be including files from
|
|
# src/chrome in src/content.
|
|
include_rules = [
|
|
"+crypto",
|
|
|
|
# The subdirectories in content/ will manually allow their own include
|
|
# directories in content/ so we disallow all of them.
|
|
"-content",
|
|
"+content/common",
|
|
"+content/public/common",
|
|
"+content/public/test",
|
|
"+content/shell", # for content_browsertests
|
|
"+content/test",
|
|
|
|
"+google_apis",
|
|
|
|
"+grit/content_resources.h",
|
|
"+grit/ui_resources.h",
|
|
"+grit/webkit_chromium_resources.h",
|
|
"+grit/webkit_resources.h",
|
|
"+grit/webkit_strings.h",
|
|
|
|
"+dbus",
|
|
"+gpu",
|
|
"+net",
|
|
"+ppapi",
|
|
"+printing",
|
|
"+sandbox",
|
|
"+skia",
|
|
|
|
# Don't allow inclusion of these other libs we shouldn't be calling directly.
|
|
"-v8",
|
|
"-tools",
|
|
|
|
# Allow inclusion of third-party code:
|
|
"+third_party/angle",
|
|
"+third_party/flac",
|
|
"+third_party/gpsd",
|
|
"+third_party/mozilla",
|
|
"+third_party/npapi/bindings",
|
|
"+third_party/skia",
|
|
"+third_party/sqlite",
|
|
"+third_party/tcmalloc",
|
|
"+third_party/khronos",
|
|
"+third_party/webrtc",
|
|
"+third_party/WebKit/Source/Platform/chromium",
|
|
"+third_party/WebKit/Source/WebKit/chromium",
|
|
|
|
"+ui/android",
|
|
# Aura is analogous to Win32 or a Gtk, so it is allowed.
|
|
"+ui/aura",
|
|
"+ui/base",
|
|
"+ui/compositor",
|
|
"+ui/gfx",
|
|
"+ui/gl",
|
|
"+ui/surface",
|
|
# Content knows about grd files, but the specifics of how to get a resource
|
|
# given its id is left to the embedder.
|
|
"-ui/base/l10n",
|
|
"-ui/base/resource",
|
|
# This file isn't related to grd, so it's fine.
|
|
"+ui/base/l10n/l10n_util_win.h",
|
|
|
|
# Content shouldn't depend on views. While we technically don't need this
|
|
# line, since the top level DEPS doesn't allow it, we add it to make this
|
|
# explicit.
|
|
"-ui/views",
|
|
|
|
"+webkit",
|
|
|
|
# For generated JNI includes.
|
|
"+jni",
|
|
]
|