Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: DEPS

Issue 1897523002: Use visual studio toolchain from depot_tools for PDFium compilation (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 use_relative_paths = True 1 use_relative_paths = True
2 2
3 vars = { 3 vars = {
4 'chromium_git': 'https://chromium.googlesource.com', 4 'chromium_git': 'https://chromium.googlesource.com',
5 'pdfium_git': 'https://pdfium.googlesource.com', 5 'pdfium_git': 'https://pdfium.googlesource.com',
6 6
7 'buildtools_revision': 'c2f259809d5ede3275df5ea0842f0431990c4f98', 7 'buildtools_revision': 'c2f259809d5ede3275df5ea0842f0431990c4f98',
8 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', 8 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df',
9 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', 9 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271',
10 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', 10 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038',
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 '--bucket', 'chromium-clang-format', 136 '--bucket', 'chromium-clang-format',
137 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', 137 '-s', 'pdfium/buildtools/linux64/clang-format.sha1',
138 ], 138 ],
139 }, 139 },
140 { 140 {
141 # Pull clang if needed or requested via GYP_DEFINES. 141 # Pull clang if needed or requested via GYP_DEFINES.
142 'name': 'clang', 142 'name': 'clang',
143 'pattern': '.', 143 'pattern': '.',
144 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], 144 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'],
145 }, 145 },
146 {
147 # Update the Windows toolchain if necessary.
148 'name': 'win_toolchain',
149 'pattern': '.',
150 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'],
151 },
146 ] 152 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | build/find_depot_tools.py » ('j') | build/find_depot_tools.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698