summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-07-14 16:21:49 -0700
committerTom Sepez <tsepez@chromium.org>2015-07-14 16:21:49 -0700
commitc52710c4eb6a4647696f413df136c7643678a7c5 (patch)
treeca8fb944503239b881962ec2ce4ce6d9314a2e61
parent83ad95c4e0b220a37af078e7e4e45b199052bf2e (diff)
downloadpdfium-c52710c4eb6a4647696f413df136c7643678a7c5.tar.xz
Merge to XFA: Tighten up DEPS include rules.
Original Review URL: https://codereview.chromium.org/1233583004 . TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1234923006 .
-rw-r--r--DEPS3
-rw-r--r--core/src/fxcodec/DEPS6
-rw-r--r--fpdfsdk/DEPS4
-rw-r--r--samples/DEPS4
-rw-r--r--testing/DEPS4
5 files changed, 19 insertions, 2 deletions
diff --git a/DEPS b/DEPS
index dbbc207492..6387890537 100644
--- a/DEPS
+++ b/DEPS
@@ -29,11 +29,10 @@ deps_os = {
}
include_rules = [
- '+core/include',
- '+fpdfsdk/include',
'+public',
'+testing',
'+third_party/base',
+ '+v8',
]
hooks = [
diff --git a/core/src/fxcodec/DEPS b/core/src/fxcodec/DEPS
new file mode 100644
index 0000000000..48eaa048e0
--- /dev/null
+++ b/core/src/fxcodec/DEPS
@@ -0,0 +1,6 @@
+include_rules = [
+ '+third_party/lcms2-2.6',
+ '+third_party/libjpeg',
+ '+third_party/libopenjpeg20',
+ '+third_party/zlib_v128',
+] \ No newline at end of file
diff --git a/fpdfsdk/DEPS b/fpdfsdk/DEPS
new file mode 100644
index 0000000000..3e7856369b
--- /dev/null
+++ b/fpdfsdk/DEPS
@@ -0,0 +1,4 @@
+include_rules = [
+ '+core/include',
+ '+javascript',
+]
diff --git a/samples/DEPS b/samples/DEPS
new file mode 100644
index 0000000000..cf2a702a7e
--- /dev/null
+++ b/samples/DEPS
@@ -0,0 +1,4 @@
+include_rules = [
+ '+fx_lpng',
+ '+third_party/zlib_v128',
+] \ No newline at end of file
diff --git a/testing/DEPS b/testing/DEPS
new file mode 100644
index 0000000000..c7267d3b70
--- /dev/null
+++ b/testing/DEPS
@@ -0,0 +1,4 @@
+include_rules = [
+ '+core/include',
+ '+fpdfsdk/include',
+] \ No newline at end of file