OLD | NEW |
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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 'pattern': '.', | 249 'pattern': '.', |
250 'action': [ 'download_from_google_storage', | 250 'action': [ 'download_from_google_storage', |
251 '--no_resume', | 251 '--no_resume', |
252 '--platform=linux*', | 252 '--platform=linux*', |
253 '--no_auth', | 253 '--no_auth', |
254 '--bucket', 'chromium-gn', | 254 '--bucket', 'chromium-gn', |
255 '-s', 'src/buildtools/linux64/gn.sha1', | 255 '-s', 'src/buildtools/linux64/gn.sha1', |
256 ], | 256 ], |
257 }, | 257 }, |
258 { | 258 { |
| 259 'name': 'gn_mac', |
| 260 'pattern': '.', |
| 261 'action': [ 'download_from_google_storage', |
| 262 '--no_resume', |
| 263 '--platform=darwin', |
| 264 '--no_auth', |
| 265 '--bucket', 'chromium-gn', |
| 266 '-s', 'src/buildtools/mac/gn.sha1', |
| 267 ], |
| 268 }, |
| 269 { |
259 'name': 'gn_win', | 270 'name': 'gn_win', |
260 'pattern': '.', | 271 'pattern': '.', |
261 'action': [ 'download_from_google_storage', | 272 'action': [ 'download_from_google_storage', |
262 '--no_resume', | 273 '--no_resume', |
263 '--platform=win*', | 274 '--platform=win*', |
264 '--no_auth', | 275 '--no_auth', |
265 '--bucket', 'chromium-gn', | 276 '--bucket', 'chromium-gn', |
266 '-s', 'src/buildtools/win/gn.exe.sha1', | 277 '-s', 'src/buildtools/win/gn.exe.sha1', |
267 ], | 278 ], |
268 }, | 279 }, |
269 # Pull clang-format binaries using checked-in hashes. | 280 # Pull clang-format binaries using checked-in hashes. |
270 { | 281 { |
271 'name': 'clang_format_linux', | 282 'name': 'clang_format_linux', |
272 'pattern': '.', | 283 'pattern': '.', |
273 'action': [ 'download_from_google_storage', | 284 'action': [ 'download_from_google_storage', |
274 '--no_resume', | 285 '--no_resume', |
275 '--platform=linux*', | 286 '--platform=linux*', |
276 '--no_auth', | 287 '--no_auth', |
277 '--bucket', 'chromium-clang-format', | 288 '--bucket', 'chromium-clang-format', |
278 '-s', 'src/buildtools/linux64/clang-format.sha1', | 289 '-s', 'src/buildtools/linux64/clang-format.sha1', |
279 ], | 290 ], |
280 }, | 291 }, |
| 292 { |
| 293 'name': 'clang_format_mac', |
| 294 'pattern': '.', |
| 295 'action': [ 'download_from_google_storage', |
| 296 '--no_resume', |
| 297 '--platform=darwin', |
| 298 '--no_auth', |
| 299 '--bucket', 'chromium-clang-format', |
| 300 '-s', 'src/buildtools/mac/clang-format.sha1', |
| 301 ], |
| 302 }, |
281 # Pull binutils for linux, enabled debug fission for faster linking / | 303 # Pull binutils for linux, enabled debug fission for faster linking / |
282 # debugging when used with clang on Ubuntu Precise. | 304 # debugging when used with clang on Ubuntu Precise. |
283 # https://code.google.com/p/chromium/issues/detail?id=352046 | 305 # https://code.google.com/p/chromium/issues/detail?id=352046 |
284 { | 306 { |
285 'name': 'binutils', | 307 'name': 'binutils', |
286 'pattern': 'src/third_party/binutils', | 308 'pattern': 'src/third_party/binutils', |
287 'action': [ | 309 'action': [ |
288 'python', | 310 'python', |
289 'src/third_party/binutils/download.py', | 311 'src/third_party/binutils/download.py', |
290 ], | 312 ], |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 'name': 'dejavu-fonts', | 384 'name': 'dejavu-fonts', |
363 'pattern': '', | 385 'pattern': '', |
364 'action': [ 'download_from_google_storage', | 386 'action': [ 'download_from_google_storage', |
365 '--no_resume', | 387 '--no_resume', |
366 '--no_auth', | 388 '--no_auth', |
367 '--bucket', 'mojo/dejavu-fonts', | 389 '--bucket', 'mojo/dejavu-fonts', |
368 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono.
ttf.sha1', | 390 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono.
ttf.sha1', |
369 ], | 391 ], |
370 }, | 392 }, |
371 ] | 393 ] |
OLD | NEW |