summaryrefslogtreecommitdiff
path: root/sandbox/linux/DEPS
diff options
context:
space:
mode:
authorDaniel Erat <derat@google.com>2015-08-24 12:50:25 -0600
committerDaniel Erat <derat@google.com>2015-08-24 12:50:25 -0600
commit59c5f4b0fb104e8e4806e4934a3d5d112ad695ab (patch)
treea392cfe92bfebf2f2ee13d6bd8ca3e4a09cafa51 /sandbox/linux/DEPS
parentdb7c5941371d7639578632d11f31fa6698198c36 (diff)
downloadlibchrome-59c5f4b0fb104e8e4806e4934a3d5d112ad695ab.tar.gz
Pull in upstream crypto/ and sandbox/ dirs at r334380.
Add code from https://chromium.googlesource.com/chromium/src/crypto at 3b5d1294 (r333554) and https://chromium.googlesource.com/chromium/src/sandbox at 50337f60 (r334108). These won't be built in AOSP, but they correspond to the versions checked out by Chrome OS. BUG=chromium:521005 Change-Id: Id82858f3a870d8ab9e3e8fe1c3bb598ba065dd14
Diffstat (limited to 'sandbox/linux/DEPS')
-rw-r--r--sandbox/linux/DEPS25
1 files changed, 25 insertions, 0 deletions
diff --git a/sandbox/linux/DEPS b/sandbox/linux/DEPS
new file mode 100644
index 0000000000..3912859344
--- /dev/null
+++ b/sandbox/linux/DEPS
@@ -0,0 +1,25 @@
+include_rules = [
+ # First, exclude everything.
+ # Exclude a few dependencies that are included in the root DEPS and that we
+ # don't need.
+ # Sadly, there is no way to exclude all root DEPS since the root has no name.
+ "-ipc",
+ "-library_loaders",
+ "-third_party",
+ "-url",
+ # Make sure that each subdirectory has to declare its dependencies in
+ # sandbox/ explicitly.
+ "-sandbox/linux",
+
+ # Second, add what we want to allow.
+ # Anything included from sandbox/linux must be declared after this line or in
+ # a more specific DEPS file.
+ # base/, build/ and testing/ are already included in the global DEPS file,
+ # but be explicit.
+ "+base",
+ "+build",
+ "+testing",
+ "+sandbox/sandbox_export.h",
+ # Everyone can use tests/
+ "+sandbox/linux/tests",
+]