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

Side by Side Diff: DEPS

Issue 1238113002: Remove Sky-specific hooks that no longer work (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 | no next file » | 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 'name': 'clang_format_mac', 288 'name': 'clang_format_mac',
289 'pattern': '.', 289 'pattern': '.',
290 'action': [ 'download_from_google_storage', 290 'action': [ 'download_from_google_storage',
291 '--no_resume', 291 '--no_resume',
292 '--platform=darwin', 292 '--platform=darwin',
293 '--no_auth', 293 '--no_auth',
294 '--bucket', 'chromium-clang-format', 294 '--bucket', 'chromium-clang-format',
295 '-s', 'src/buildtools/mac/clang-format.sha1', 295 '-s', 'src/buildtools/mac/clang-format.sha1',
296 ], 296 ],
297 }, 297 },
298 # Pull sky_server binaries using checked-in hashes.
299 {
300 'name': 'sky_server_linux',
301 'pattern': '.',
302 'action': [ 'download_from_google_storage',
303 '--no_resume',
304 '--platform=linux*',
305 '--no_auth',
306 '--bucket', 'mojo',
307 '-s', 'src/sky/tools/skygo/linux64/sky_server.sha1',
308 ],
309 },
310 {
311 'name': 'sky_server_mac',
312 'pattern': '.',
313 'action': [ 'download_from_google_storage',
314 '--no_resume',
315 '--platform=darwin',
316 '--no_auth',
317 '--bucket', 'mojo',
318 '-s', 'src/sky/tools/skygo/mac/sky_server.sha1',
319 ],
320 },
321 {
322 'name': 'material_design_icons',
323 'pattern': '.',
324 'action': [
325 'python',
326 'src/sky/sdk/lib/download_material_design_icons',
327 ],
328 },
329 # Pull binutils for linux, enabled debug fission for faster linking / 298 # Pull binutils for linux, enabled debug fission for faster linking /
330 # debugging when used with clang on Ubuntu Precise. 299 # debugging when used with clang on Ubuntu Precise.
331 # https://code.google.com/p/chromium/issues/detail?id=352046 300 # https://code.google.com/p/chromium/issues/detail?id=352046
332 { 301 {
333 'name': 'binutils', 302 'name': 'binutils',
334 'pattern': 'src/third_party/binutils', 303 'pattern': 'src/third_party/binutils',
335 'action': [ 304 'action': [
336 'python', 305 'python',
337 'src/third_party/binutils/download.py', 306 'src/third_party/binutils/download.py',
338 ], 307 ],
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 'name': 'keyboard_native_resources', 390 'name': 'keyboard_native_resources',
422 'pattern': '', 391 'pattern': '',
423 'action': [ 'download_from_google_storage', 392 'action': [ 'download_from_google_storage',
424 '--no_resume', 393 '--no_resume',
425 '--no_auth', 394 '--no_auth',
426 '--bucket', 'mojo/keyboard_native', 395 '--bucket', 'mojo/keyboard_native',
427 '-d', 'src/services/keyboard_native/res', 396 '-d', 'src/services/keyboard_native/res',
428 ], 397 ],
429 }, 398 },
430 ] 399 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698