summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-06-05 13:34:44 -0700
committerTom Sepez <tsepez@chromium.org>2015-06-05 13:34:44 -0700
commit211f90e1bc5d855a2fce3e5f4f6d60d59667894e (patch)
treeaa95177ad819b75ffbb45c3c293fe240d2be12c5
parent9e4cd8b2a40ed79d37f399e438e2e11b740c867f (diff)
downloadpdfium-211f90e1bc5d855a2fce3e5f4f6d60d59667894e.tar.xz
Standalone checkout gets buildtools.
This will pull in the checkdeps utility for standalone builds. Write some include rules, too. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1149623011
-rw-r--r--.gitignore1
-rw-r--r--DEPS11
2 files changed, 12 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 886dba9a43..3014ed6fa7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
/build/Debug
/build/Release
/build/gyp
+/buildtools
/out
/testing/corpus
/testing/gmock
diff --git a/DEPS b/DEPS
index ef59c148bb..d6972d7417 100644
--- a/DEPS
+++ b/DEPS
@@ -4,6 +4,9 @@ deps = {
"build/gyp":
"https://chromium.googlesource.com/external/gyp",
+ "buildtools":
+ "https://chromium.googlesource.com/chromium/buildtools.git@46ce8cb60364e9e0b21a81136c7debdddfd063a8",
+
"testing/corpus":
"https://pdfium.googlesource.com/pdfium_tests@9cc1567a5eab106c1f3dbcfcada815c9505ac906",
@@ -26,3 +29,11 @@ deps_os = {
"https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf3a10ff1007a97c0b7de6df",
},
}
+
+include_rules = [
+ '+core/include',
+ '+fpdfsdk/include',
+ '+public',
+ '+testing',
+ '+third_party/base',
+]