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 'build_revision': '2f91397926336dd46ea49ffef702197b9cc2215a', | 7 'build_revision': '2f91397926336dd46ea49ffef702197b9cc2215a', |
8 'buildtools_revision': '5378d73123b64907773cc5c1bb027b2f765ff00a', | 8 'buildtools_revision': '5378d73123b64907773cc5c1bb027b2f765ff00a', |
9 'clang_revision': '2956eca572ff0e1b181df65f71a045f061a2eb34', | 9 'clang_revision': '2956eca572ff0e1b181df65f71a045f061a2eb34', |
10 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', | 10 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 }, | 162 }, |
163 { | 163 { |
164 # Pull clang if needed or requested via GYP_DEFINES. | 164 # Pull clang if needed or requested via GYP_DEFINES. |
165 'name': 'clang', | 165 'name': 'clang', |
166 'pattern': '.', | 166 'pattern': '.', |
167 'action': ['python', | 167 'action': ['python', |
168 'pdfium/tools/clang/scripts/update.py', | 168 'pdfium/tools/clang/scripts/update.py', |
169 '--if-needed' | 169 '--if-needed' |
170 ], | 170 ], |
171 }, | 171 }, |
| 172 { |
| 173 # Update the Windows toolchain if necessary. |
| 174 'name': 'win_toolchain', |
| 175 'pattern': '.', |
| 176 'action': ['python', 'pdfium/build_gyp/vs_toolchain.py', 'update'], |
| 177 }, |
172 ] | 178 ] |
OLD | NEW |