OLD | NEW |
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 Loading... |
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 ] |
OLD | NEW |