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

Side by Side Diff: DEPS

Issue 1150033006: Add support for Mac vs. Linux sky_server builds (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Update per jamesr's comments Created 5 years, 7 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 | sky/HACKING.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 # 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 'name': 'clang_format_mac', 244 'name': 'clang_format_mac',
245 'pattern': '.', 245 'pattern': '.',
246 'action': [ 'download_from_google_storage', 246 'action': [ 'download_from_google_storage',
247 '--no_resume', 247 '--no_resume',
248 '--platform=darwin', 248 '--platform=darwin',
249 '--no_auth', 249 '--no_auth',
250 '--bucket', 'chromium-clang-format', 250 '--bucket', 'chromium-clang-format',
251 '-s', 'src/buildtools/mac/clang-format.sha1', 251 '-s', 'src/buildtools/mac/clang-format.sha1',
252 ], 252 ],
253 }, 253 },
254 # Pull sky_server binaries using checked-in hashes.
255 {
256 'name': 'sky_server_linux',
257 'pattern': '.',
258 'action': [ 'download_from_google_storage',
259 '--no_resume',
260 '--platform=linux*',
261 '--no_auth',
262 '--bucket', 'mojo',
263 '-s', 'src/sky/tools/skygo/linux64/sky_server.sha1',
264 ],
265 },
266 {
267 'name': 'sky_server_mac',
268 'pattern': '.',
269 'action': [ 'download_from_google_storage',
270 '--no_resume',
271 '--platform=darwin',
272 '--no_auth',
273 '--bucket', 'mojo',
274 '-s', 'src/sky/tools/skygo/mac/sky_server.sha1',
275 ],
276 },
254 # Pull binutils for linux, enabled debug fission for faster linking / 277 # Pull binutils for linux, enabled debug fission for faster linking /
255 # debugging when used with clang on Ubuntu Precise. 278 # debugging when used with clang on Ubuntu Precise.
256 # https://code.google.com/p/chromium/issues/detail?id=352046 279 # https://code.google.com/p/chromium/issues/detail?id=352046
257 { 280 {
258 'name': 'binutils', 281 'name': 'binutils',
259 'pattern': 'src/third_party/binutils', 282 'pattern': 'src/third_party/binutils',
260 'action': [ 283 'action': [
261 'python', 284 'python',
262 'src/third_party/binutils/download.py', 285 'src/third_party/binutils/download.py',
263 ], 286 ],
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 'name': 'dejavu-fonts', 358 'name': 'dejavu-fonts',
336 'pattern': '', 359 'pattern': '',
337 'action': [ 'download_from_google_storage', 360 'action': [ 'download_from_google_storage',
338 '--no_resume', 361 '--no_resume',
339 '--no_auth', 362 '--no_auth',
340 '--bucket', 'mojo/dejavu-fonts', 363 '--bucket', 'mojo/dejavu-fonts',
341 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono. ttf.sha1', 364 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono. ttf.sha1',
342 ], 365 ],
343 }, 366 },
344 ] 367 ]
OLDNEW
« no previous file with comments | « no previous file | sky/HACKING.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698