OLD | NEW |
1 # This file contains dependencies for WebRTC. | 1 # This file contains dependencies for WebRTC. |
2 | 2 |
3 vars = { | 3 vars = { |
4 'chromium_git': 'https://chromium.googlesource.com', | 4 'chromium_git': 'https://chromium.googlesource.com', |
5 'chromium_revision': 'f156b499f700f849d110801e8a303c00c98ae5bc', | 5 'chromium_revision': 'f156b499f700f849d110801e8a303c00c98ae5bc', |
6 'boringssl_git': 'https://boringssl.googlesource.com', | 6 'boringssl_git': 'https://boringssl.googlesource.com', |
7 # Three lines of non-changing comments so that | 7 # Three lines of non-changing comments so that |
8 # the commit queue can handle CLs rolling swarming_client | 8 # the commit queue can handle CLs rolling swarming_client |
9 # and whatever else without interference from each other. | 9 # and whatever else without interference from each other. |
10 'swarming_revision': '42721e128da760b345ab60d7cf34e300269112d7', | 10 'swarming_revision': '42721e128da760b345ab60d7cf34e300269112d7', |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 'pattern': '.', | 363 'pattern': '.', |
364 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 364 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
365 '--running-as-hook'], | 365 '--running-as-hook'], |
366 }, | 366 }, |
367 { | 367 { |
368 # Update the Windows toolchain if necessary. | 368 # Update the Windows toolchain if necessary. |
369 'name': 'win_toolchain', | 369 'name': 'win_toolchain', |
370 'pattern': '.', | 370 'pattern': '.', |
371 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 371 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
372 }, | 372 }, |
| 373 { |
| 374 # Update the Mac toolchain if necessary. |
| 375 'name': 'mac_toolchain', |
| 376 'pattern': '.', |
| 377 'action': ['python', 'src/build/mac_toolchain.py'], |
| 378 }, |
373 # Pull binutils for linux, enabled debug fission for faster linking / | 379 # Pull binutils for linux, enabled debug fission for faster linking / |
374 # debugging when used with clang on Ubuntu Precise. | 380 # debugging when used with clang on Ubuntu Precise. |
375 # https://code.google.com/p/chromium/issues/detail?id=352046 | 381 # https://code.google.com/p/chromium/issues/detail?id=352046 |
376 { | 382 { |
377 'name': 'binutils', | 383 'name': 'binutils', |
378 'pattern': 'src/third_party/binutils', | 384 'pattern': 'src/third_party/binutils', |
379 'action': [ | 385 'action': [ |
380 'python', | 386 'python', |
381 'src/third_party/binutils/download.py', | 387 'src/third_party/binutils/download.py', |
382 ], | 388 ], |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 ], | 549 ], |
544 }, | 550 }, |
545 ], | 551 ], |
546 } | 552 } |
547 recursedeps = [ | 553 recursedeps = [ |
548 # buildtools provides clang_format, libc++, and libc++abi. | 554 # buildtools provides clang_format, libc++, and libc++abi. |
549 'src/buildtools', | 555 'src/buildtools', |
550 # android_tools manages the NDK. | 556 # android_tools manages the NDK. |
551 'src/third_party/android_tools', | 557 'src/third_party/android_tools', |
552 ] | 558 ] |
OLD | NEW |