diff options
author | Aneesh Mulye <aneeshm@chromium.org> | 2014-08-06 18:11:02 -0700 |
---|---|---|
committer | Aneesh Mulye <aneeshm@chromium.org> | 2014-08-06 18:11:02 -0700 |
commit | 2ee9c3a71497cb637a4953928014863a4ebb1ed6 (patch) | |
tree | 32e7bbae6ad5d1e21ccac2a0c01f110e0e3459c0 | |
parent | 9047b8bde94aa66bc64ac01c7774b8d2ff5bb09e (diff) | |
download | pdfium-2ee9c3a71497cb637a4953928014863a4ebb1ed6.tar.xz |
gclient DEPS file for auto checking out deps
Added a DEPS file so that bot_update and gclient can automatically check
out dependencies (GYP, V8, ICU, and on Windows, Cygwin).
BUG=375773
R=jam@chromium.org, nodir@chromium.org
Review URL: https://codereview.chromium.org/416663002
-rw-r--r-- | DEPS | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +deps = { + "pdfium/build/gyp": + "https://chromium.googlesource.com/external/gyp", + + "pdfium/v8": + "https://chromium.googlesource.com/external/v8", + + "pdfium/v8/third_party/icu": + "https://chromium.googlesource.com/chromium/deps/icu46", +} + +deps_os = { + "win": { + "pdfium/v8/third_party/cygwin": + "https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf3a10ff1007a97c0b7de6df", + }, +} |