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

Side by Side Diff: DEPS

Issue 1410783004: Wrap download_from_google_storage.py in a cwd-independent script (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: wrap Created 5 years, 1 month 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 | tools/download_from_google_storage.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is automatically processed to create .DEPS.git which is the file 1 # This file is automatically processed to create .DEPS.git which is the file
2 # that gclient uses under git. 2 # that gclient uses under git.
3 # 3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit 4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 # 5 #
6 # To test manually, run: 6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
8 # where <gcliendir> is the absolute path to the directory containing the 8 # where <gcliendir> is the absolute path to the directory containing the
9 # .gclient file (the parent of 'src'). 9 # .gclient file (the parent of 'src').
10 # 10 #
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 # src/tools/export_tarball - please keep them in sync. 203 # src/tools/export_tarball - please keep them in sync.
204 'name': 'lastchange', 204 'name': 'lastchange',
205 'pattern': '.', 205 'pattern': '.',
206 'action': ['python', 'src/build/util/lastchange.py', 206 'action': ['python', 'src/build/util/lastchange.py',
207 '-o', 'src/build/util/LASTCHANGE'], 207 '-o', 'src/build/util/LASTCHANGE'],
208 }, 208 },
209 # Pull GN binaries. This needs to be before running GYP below. 209 # Pull GN binaries. This needs to be before running GYP below.
210 { 210 {
211 'name': 'gn_linux64', 211 'name': 'gn_linux64',
212 'pattern': '.', 212 'pattern': '.',
213 'action': [ 'download_from_google_storage', 213 'action': [ 'src/tools/download_from_google_storage.py',
214 '--no_resume', 214 '--no_resume',
viettrungluu 2015/10/28 22:37:33 I wonder if we shouldn't include "--no_resume", "-
215 '--quiet', 215 '--quiet',
216 '--platform=linux*', 216 '--platform=linux*',
217 '--no_auth', 217 '--no_auth',
218 '--bucket', 'chromium-gn', 218 '--bucket', 'chromium-gn',
219 '-s', 'src/buildtools/linux64/gn.sha1', 219 '-s', 'src/buildtools/linux64/gn.sha1',
220 ], 220 ],
221 }, 221 },
222 { 222 {
223 'name': 'gn_mac', 223 'name': 'gn_mac',
224 'pattern': '.', 224 'pattern': '.',
225 'action': [ 'download_from_google_storage', 225 'action': [ 'src/tools/download_from_google_storage.py',
226 '--no_resume', 226 '--no_resume',
227 '--quiet', 227 '--quiet',
228 '--platform=darwin', 228 '--platform=darwin',
229 '--no_auth', 229 '--no_auth',
230 '--bucket', 'chromium-gn', 230 '--bucket', 'chromium-gn',
231 '-s', 'src/buildtools/mac/gn.sha1', 231 '-s', 'src/buildtools/mac/gn.sha1',
232 ], 232 ],
233 }, 233 },
234 { 234 {
235 'name': 'gn_win', 235 'name': 'gn_win',
236 'pattern': '.', 236 'pattern': '.',
237 'action': [ 'download_from_google_storage', 237 'action': [ 'src/tools/download_from_google_storage.py',
238 '--no_resume', 238 '--no_resume',
239 '--quiet', 239 '--quiet',
240 '--platform=win*', 240 '--platform=win*',
241 '--no_auth', 241 '--no_auth',
242 '--bucket', 'chromium-gn', 242 '--bucket', 'chromium-gn',
243 '-s', 'src/buildtools/win/gn.exe.sha1', 243 '-s', 'src/buildtools/win/gn.exe.sha1',
244 ], 244 ],
245 }, 245 },
246 # Pull clang-format binaries using checked-in hashes. 246 # Pull clang-format binaries using checked-in hashes.
247 { 247 {
248 'name': 'clang_format_linux', 248 'name': 'clang_format_linux',
249 'pattern': '.', 249 'pattern': '.',
250 'action': [ 'download_from_google_storage', 250 'action': [ 'src/tools/download_from_google_storage.py',
251 '--no_resume', 251 '--no_resume',
252 '--quiet', 252 '--quiet',
253 '--platform=linux*', 253 '--platform=linux*',
254 '--no_auth', 254 '--no_auth',
255 '--bucket', 'chromium-clang-format', 255 '--bucket', 'chromium-clang-format',
256 '-s', 'src/buildtools/linux64/clang-format.sha1', 256 '-s', 'src/buildtools/linux64/clang-format.sha1',
257 ], 257 ],
258 }, 258 },
259 { 259 {
260 'name': 'clang_format_mac', 260 'name': 'clang_format_mac',
261 'pattern': '.', 261 'pattern': '.',
262 'action': [ 'download_from_google_storage', 262 'action': [ 'src/tools/download_from_google_storage.py',
263 '--no_resume', 263 '--no_resume',
264 '--quiet', 264 '--quiet',
265 '--platform=darwin', 265 '--platform=darwin',
266 '--no_auth', 266 '--no_auth',
267 '--bucket', 'chromium-clang-format', 267 '--bucket', 'chromium-clang-format',
268 '-s', 'src/buildtools/mac/clang-format.sha1', 268 '-s', 'src/buildtools/mac/clang-format.sha1',
269 ], 269 ],
270 }, 270 },
271 # Pull binutils for linux, enabled debug fission for faster linking / 271 # Pull binutils for linux, enabled debug fission for faster linking /
272 # debugging when used with clang on Ubuntu Precise. 272 # debugging when used with clang on Ubuntu Precise.
273 # https://code.google.com/p/chromium/issues/detail?id=352046 273 # https://code.google.com/p/chromium/issues/detail?id=352046
274 { 274 {
275 'name': 'binutils', 275 'name': 'binutils',
276 'pattern': 'src/third_party/binutils', 276 'pattern': 'src/third_party/binutils',
277 'action': [ 277 'action': [
278 'python', 278 'python',
279 'src/third_party/binutils/download.py', 279 'src/third_party/binutils/download.py',
280 ], 280 ],
281 }, 281 },
282 # Pull eu-strip binaries using checked-in hashes. 282 # Pull eu-strip binaries using checked-in hashes.
283 { 283 {
284 'name': 'eu-strip', 284 'name': 'eu-strip',
285 'pattern': '.', 285 'pattern': '.',
286 'action': [ 'download_from_google_storage', 286 'action': [ 'src/tools/download_from_google_storage.py',
287 '--no_resume', 287 '--no_resume',
288 '--quiet', 288 '--quiet',
289 '--platform=linux*', 289 '--platform=linux*',
290 '--no_auth', 290 '--no_auth',
291 '--bucket', 'chromium-eu-strip', 291 '--bucket', 'chromium-eu-strip',
292 '-s', 'src/build/linux/bin/eu-strip.sha1', 292 '-s', 'src/build/linux/bin/eu-strip.sha1',
293 ], 293 ],
294 }, 294 },
295 # Pull the prebuilt network service binaries according to 295 # Pull the prebuilt network service binaries according to
296 # mojo/public/tools/NETWORK_SERVICE_VERSION. 296 # mojo/public/tools/NETWORK_SERVICE_VERSION.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 'name': 'gotools', 331 'name': 'gotools',
332 'pattern': '.', 332 'pattern': '.',
333 'action': [ 333 'action': [
334 'python', 'src/tools/go/download.py', 334 'python', 'src/tools/go/download.py',
335 ], 335 ],
336 }, 336 },
337 # Pull DejaVu fonts using checked-in hashes. 337 # Pull DejaVu fonts using checked-in hashes.
338 { 338 {
339 'name': 'dejavu-fonts', 339 'name': 'dejavu-fonts',
340 'pattern': '', 340 'pattern': '',
341 'action': [ 'download_from_google_storage', 341 'action': [ 'src/tools/download_from_google_storage.py',
342 '--no_resume', 342 '--no_resume',
343 '--quiet', 343 '--quiet',
344 '--no_auth', 344 '--no_auth',
345 '--bucket', 'mojo/dejavu-fonts', 345 '--bucket', 'mojo/dejavu-fonts',
346 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono. ttf.sha1', 346 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono. ttf.sha1',
347 ], 347 ],
348 }, 348 },
349 # Pull keyboard_native resources using checked-in hashes. 349 # Pull keyboard_native resources using checked-in hashes.
350 { 350 {
351 'name': 'keyboard_native_resources', 351 'name': 'keyboard_native_resources',
352 'pattern': '', 352 'pattern': '',
353 'action': [ 'download_from_google_storage', 353 'action': [ 'src/tools/download_from_google_storage.py',
354 '--no_resume', 354 '--no_resume',
355 '--quiet', 355 '--quiet',
356 '--no_auth', 356 '--no_auth',
357 '--bucket', 'mojo/keyboard_native', 357 '--bucket', 'mojo/keyboard_native',
358 '-d', 'src/services/keyboard_native/res', 358 '-d', 'src/services/keyboard_native/res',
359 ], 359 ],
360 }, 360 },
361 # Pull dump_syms resources using checked-in hashes. 361 # Pull dump_syms resources using checked-in hashes.
362 { 362 {
363 'name': 'dump_syms_linux64', 363 'name': 'dump_syms_linux64',
364 'pattern': '.', 364 'pattern': '.',
365 'action': [ 'download_from_google_storage', 365 'action': [ 'src/tools/download_from_google_storage.py',
366 '--no_resume', 366 '--no_resume',
367 '--quiet', 367 '--quiet',
368 '--platform=linux*', 368 '--platform=linux*',
369 '--no_auth', 369 '--no_auth',
370 '--bucket', 'mojo', 370 '--bucket', 'mojo',
371 '-s', 'src/mojo/tools/linux64/dump_syms.sha1', 371 '-s', 'src/mojo/tools/linux64/dump_syms.sha1',
372 ], 372 ],
373 }, 373 },
374 # Pull symupload resources using checked-in hashes. 374 # Pull symupload resources using checked-in hashes.
375 { 375 {
376 'name': 'symupload_linux64', 376 'name': 'symupload_linux64',
377 'pattern': '.', 377 'pattern': '.',
378 'action': [ 'download_from_google_storage', 378 'action': [ 'src/tools/download_from_google_storage.py',
379 '--no_resume', 379 '--no_resume',
380 '--quiet', 380 '--quiet',
381 '--platform=linux*', 381 '--platform=linux*',
382 '--no_auth', 382 '--no_auth',
383 '--bucket', 'mojo', 383 '--bucket', 'mojo',
384 '-s', 'src/mojo/tools/linux64/symupload.sha1', 384 '-s', 'src/mojo/tools/linux64/symupload.sha1',
385 ], 385 ],
386 }, 386 },
387 # Pull prediction resources using checked-in hashes. 387 # Pull prediction resources using checked-in hashes.
388 { 388 {
389 'name': 'prediction_resources', 389 'name': 'prediction_resources',
390 'pattern': '', 390 'pattern': '',
391 'action': [ 'download_from_google_storage', 391 'action': [ 'src/tools/download_from_google_storage.py',
392 '--no_resume', 392 '--no_resume',
393 '--quiet', 393 '--quiet',
394 '--no_auth', 394 '--no_auth',
395 '--bucket', 'mojo/prediction', 395 '--bucket', 'mojo/prediction',
396 '-d', 'src/services/prediction/res', 396 '-d', 'src/services/prediction/res',
397 ], 397 ],
398 }, 398 },
399 ] 399 ]
OLDNEW
« no previous file with comments | « no previous file | tools/download_from_google_storage.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698