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