| 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': '17c3a61f0cf073a39f4d538c442b5885ce2b06ac', | 5 'chromium_revision': '17c3a61f0cf073a39f4d538c442b5885ce2b06ac', |
| 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': 'e6fc9383ad7c38b3464141989b7bc498391e57e4', | 10 'swarming_revision': 'e6fc9383ad7c38b3464141989b7bc498391e57e4', |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 'name': 'luci-go_linux', | 486 'name': 'luci-go_linux', |
| 487 'pattern': '.', | 487 'pattern': '.', |
| 488 'action': [ 'download_from_google_storage', | 488 'action': [ 'download_from_google_storage', |
| 489 '--no_resume', | 489 '--no_resume', |
| 490 '--platform=linux*', | 490 '--platform=linux*', |
| 491 '--no_auth', | 491 '--no_auth', |
| 492 '--bucket', 'chromium-luci', | 492 '--bucket', 'chromium-luci', |
| 493 '-d', 'src/tools/luci-go/linux64', | 493 '-d', 'src/tools/luci-go/linux64', |
| 494 ], | 494 ], |
| 495 }, | 495 }, |
| 496 # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 497 { |
| 498 'name': 'syzygy-binaries', |
| 499 'pattern': '.', |
| 500 'action': ['python', |
| 501 'src/build/get_syzygy_binaries.py', |
| 502 '--output-dir=src/third_party/syzygy/binaries', |
| 503 '--revision=a8456d9248a126881dcfb8707ca7dcdae56e1ac7', |
| 504 '--overwrite', |
| 505 ], |
| 506 }, |
| 496 { | 507 { |
| 497 # Pull sanitizer-instrumented third-party libraries if requested via | 508 # Pull sanitizer-instrumented third-party libraries if requested via |
| 498 # GYP_DEFINES. | 509 # GYP_DEFINES. |
| 499 # See src/third_party/instrumented_libraries/scripts/download_binaries.py. | 510 # See src/third_party/instrumented_libraries/scripts/download_binaries.py. |
| 500 # TODO(kjellander): Update comment when GYP is completely cleaned up. | 511 # TODO(kjellander): Update comment when GYP is completely cleaned up. |
| 501 'name': 'instrumented_libraries', | 512 'name': 'instrumented_libraries', |
| 502 'pattern': '\\.sha1', | 513 'pattern': '\\.sha1', |
| 503 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 514 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 504 }, | 515 }, |
| 505 { | 516 { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 516 }, | 527 }, |
| 517 ] | 528 ] |
| 518 | 529 |
| 519 recursedeps = [ | 530 recursedeps = [ |
| 520 # buildtools provides clang_format, libc++, and libc++abi. | 531 # buildtools provides clang_format, libc++, and libc++abi. |
| 521 'src/buildtools', | 532 'src/buildtools', |
| 522 # android_tools manages the NDK. | 533 # android_tools manages the NDK. |
| 523 'src/third_party/android_tools', | 534 'src/third_party/android_tools', |
| 524 ] | 535 ] |
| 525 | 536 |
| OLD | NEW |