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

Side by Side Diff: DEPS

Issue 1922773002: Do not download Linux sysroots. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 4 years, 3 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
« no previous file with comments | « no previous file | README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'android_ndk_revision': '5022f40f12953c02b2614c5f7beb981ec5d0e833', 7 'android_ndk_revision': '5022f40f12953c02b2614c5f7beb981ec5d0e833',
8 'build_revision': 'b73bafdd0ff0efc8835de6e646b47eec0a2a38a4', 8 'build_revision': 'b73bafdd0ff0efc8835de6e646b47eec0a2a38a4',
9 'buildtools_revision': 'adb8bf4e8fc92aa1717bf151b862d58e6f27c4f2', 9 'buildtools_revision': 'adb8bf4e8fc92aa1717bf151b862d58e6f27c4f2',
10 'catapult_revision': '327256cb1c387e62a2c7e6960e2398867665fb51', 10 'catapult_revision': '327256cb1c387e62a2c7e6960e2398867665fb51',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 'name': 'gn_linux64', 120 'name': 'gn_linux64',
121 'pattern': '.', 121 'pattern': '.',
122 'action': [ 'download_from_google_storage', 122 'action': [ 'download_from_google_storage',
123 '--no_resume', 123 '--no_resume',
124 '--platform=linux*', 124 '--platform=linux*',
125 '--no_auth', 125 '--no_auth',
126 '--bucket', 'chromium-gn', 126 '--bucket', 'chromium-gn',
127 '-s', 'pdfium/buildtools/linux64/gn.sha1', 127 '-s', 'pdfium/buildtools/linux64/gn.sha1',
128 ], 128 ],
129 }, 129 },
130 {
131 # Downloads the current stable linux sysroot to build/linux/ if needed.
132 # This sysroot updates at about the same rate that the chrome build deps
133 # change. This script is a no-op except for linux users who are doing
134 # official chrome builds or cross compiling.
135 'name': 'sysroot',
136 'pattern': '.',
137 'action': ['python',
138 'pdfium/build/linux/sysroot_scripts/install-sysroot.py',
139 '--running-as-hook'
140 ],
141 },
142 # Pull clang-format binaries using checked-in hashes. 130 # Pull clang-format binaries using checked-in hashes.
143 { 131 {
144 'name': 'clang_format_win', 132 'name': 'clang_format_win',
145 'pattern': '.', 133 'pattern': '.',
146 'action': [ 'download_from_google_storage', 134 'action': [ 'download_from_google_storage',
147 '--no_resume', 135 '--no_resume',
148 '--platform=win32', 136 '--platform=win32',
149 '--no_auth', 137 '--no_auth',
150 '--bucket', 'chromium-clang-format', 138 '--bucket', 'chromium-clang-format',
151 '-s', 'pdfium/buildtools/win/clang-format.exe.sha1', 139 '-s', 'pdfium/buildtools/win/clang-format.exe.sha1',
(...skipping 30 matching lines...) Expand all
182 '--if-needed' 170 '--if-needed'
183 ], 171 ],
184 }, 172 },
185 { 173 {
186 # Update the Windows toolchain if necessary. 174 # Update the Windows toolchain if necessary.
187 'name': 'win_toolchain', 175 'name': 'win_toolchain',
188 'pattern': '.', 176 'pattern': '.',
189 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], 177 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'],
190 }, 178 },
191 ] 179 ]
OLDNEW
« no previous file with comments | « no previous file | README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698