diff options
author | weili <weili@chromium.org> | 2016-04-18 12:24:36 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-18 12:24:36 -0700 |
commit | b34d72b1045aafa420f6749b098e0ae6d9ce18b9 (patch) | |
tree | ae2ea95821bb5dfb6040890e4568d1f2f3da8c84 /DEPS | |
parent | 076f5ac6084e3170dabfc598541dd4e94126dc9c (diff) | |
download | pdfium-b34d72b1045aafa420f6749b098e0ae6d9ce18b9.tar.xz |
Use lkgr revision of Clang for PDFium
Recent change of Clang (https://codereview.chromium.org/1879753002)
invokes GetVSVersion() which imports vs_toolchain which PDFium has
not used yet. This breaks our bots. Now we pinned Clang to last good
version.
We can either change back to use Tot Clang after we have toolchain
utility, or we can roll Clang periodically.
Review URL: https://codereview.chromium.org/1900823002
Diffstat (limited to 'DEPS')
-rw-r--r-- | DEPS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,7 @@ vars = { 'pdfium_git': 'https://pdfium.googlesource.com', 'buildtools_revision': 'c2f259809d5ede3275df5ea0842f0431990c4f98', + 'clang_revision': '87058e09f9c547eb5d00cb8ca666c6aec203a117', 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', @@ -36,7 +37,7 @@ deps = { Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), "tools/clang": - Var('chromium_git') + "/chromium/src/tools/clang", + Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'), "v8": Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), |