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': '8fdcb934eebce9cc880e3d4b99b66951e2232499', | 5 'chromium_revision': '8fdcb934eebce9cc880e3d4b99b66951e2232499', |
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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 'action': ['download_from_google_storage', | 523 'action': ['download_from_google_storage', |
524 '--directory', | 524 '--directory', |
525 '--recursive', | 525 '--recursive', |
526 '--num_threads=10', | 526 '--num_threads=10', |
527 '--no_auth', | 527 '--no_auth', |
528 '--quiet', | 528 '--quiet', |
529 '--bucket', 'chromium-webrtc-resources', | 529 '--bucket', 'chromium-webrtc-resources', |
530 'src/resources'], | 530 'src/resources'], |
531 }, | 531 }, |
532 ] | 532 ] |
| 533 hooks_os = { |
| 534 'android': [ |
| 535 { |
| 536 'name': 'desugar', |
| 537 'pattern': '.', |
| 538 'action': ['python', |
| 539 'src/build/android/update_deps/update_third_party_deps.py', |
| 540 'download', |
| 541 '-b', 'chromium-android-tools/bazel/desugar', |
| 542 '-l', 'third_party/bazel/desugar' |
| 543 ], |
| 544 }, |
| 545 ], |
| 546 } |
533 recursedeps = [ | 547 recursedeps = [ |
534 # buildtools provides clang_format, libc++, and libc++abi. | 548 # buildtools provides clang_format, libc++, and libc++abi. |
535 'src/buildtools', | 549 'src/buildtools', |
536 # android_tools manages the NDK. | 550 # android_tools manages the NDK. |
537 'src/third_party/android_tools', | 551 'src/third_party/android_tools', |
538 ] | 552 ] |
OLD | NEW |