OLD | NEW |
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 'name': 'clang_format_linux', | 651 'name': 'clang_format_linux', |
652 'pattern': '.', | 652 'pattern': '.', |
653 'action': [ 'download_from_google_storage', | 653 'action': [ 'download_from_google_storage', |
654 '--no_resume', | 654 '--no_resume', |
655 '--platform=linux*', | 655 '--platform=linux*', |
656 '--no_auth', | 656 '--no_auth', |
657 '--bucket', 'chromium-clang-format', | 657 '--bucket', 'chromium-clang-format', |
658 '-s', 'src/buildtools/linux64/clang-format.sha1', | 658 '-s', 'src/buildtools/linux64/clang-format.sha1', |
659 ], | 659 ], |
660 }, | 660 }, |
| 661 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 662 { |
| 663 'name': 'luci-go_win', |
| 664 'pattern': '.', |
| 665 'action': [ 'download_from_google_storage', |
| 666 '--no_resume', |
| 667 '--platform=win32', |
| 668 '--no_auth', |
| 669 '--bucket', 'chromium-luci', |
| 670 '-d', 'src/tools/luci-go/win64', |
| 671 ], |
| 672 }, |
| 673 { |
| 674 'name': 'luci-go_mac', |
| 675 'pattern': '.', |
| 676 'action': [ 'download_from_google_storage', |
| 677 '--no_resume', |
| 678 '--platform=darwin', |
| 679 '--no_auth', |
| 680 '--bucket', 'chromium-luci', |
| 681 '-d', 'src/tools/luci-go/mac64', |
| 682 ], |
| 683 }, |
| 684 { |
| 685 'name': 'luci-go_linux', |
| 686 'pattern': '.', |
| 687 'action': [ 'download_from_google_storage', |
| 688 '--no_resume', |
| 689 '--platform=linux*', |
| 690 '--no_auth', |
| 691 '--bucket', 'chromium-luci', |
| 692 '-d', 'src/tools/luci-go/linux64', |
| 693 ], |
| 694 }, |
661 # Pull eu-strip binaries using checked-in hashes. | 695 # Pull eu-strip binaries using checked-in hashes. |
662 { | 696 { |
663 'name': 'eu-strip', | 697 'name': 'eu-strip', |
664 'pattern': '.', | 698 'pattern': '.', |
665 'action': [ 'download_from_google_storage', | 699 'action': [ 'download_from_google_storage', |
666 '--no_resume', | 700 '--no_resume', |
667 '--platform=linux*', | 701 '--platform=linux*', |
668 '--no_auth', | 702 '--no_auth', |
669 '--bucket', 'chromium-eu-strip', | 703 '--bucket', 'chromium-eu-strip', |
670 '-s', 'src/build/linux/bin/eu-strip.sha1', | 704 '-s', 'src/build/linux/bin/eu-strip.sha1', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 # corresponding .py files have already been deleted. | 791 # corresponding .py files have already been deleted. |
758 'name': 'remove_stale_pyc_files', | 792 'name': 'remove_stale_pyc_files', |
759 'pattern': 'src/tools/.*\\.py', | 793 'pattern': 'src/tools/.*\\.py', |
760 'action': [ | 794 'action': [ |
761 'python', | 795 'python', |
762 'src/tools/remove_stale_pyc_files.py', | 796 'src/tools/remove_stale_pyc_files.py', |
763 'src/tools', | 797 'src/tools', |
764 ], | 798 ], |
765 }, | 799 }, |
766 ] | 800 ] |
OLD | NEW |