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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 'python', | 550 'python', |
551 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | 551 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', |
552 '--running-as-hook'], | 552 '--running-as-hook'], |
553 }, | 553 }, |
554 { | 554 { |
555 # Update the Windows toolchain if necessary. | 555 # Update the Windows toolchain if necessary. |
556 'name': 'win_toolchain', | 556 'name': 'win_toolchain', |
557 'pattern': '.', | 557 'pattern': '.', |
558 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 558 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
559 }, | 559 }, |
| 560 # Pull binutils for linux, enabled debug fission for faster linking / |
| 561 # debugging when used with clang on Ubuntu Precise. |
| 562 # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 563 { |
| 564 'name': 'binutils', |
| 565 'pattern': 'src/third_party/binutils', |
| 566 'action': [ |
| 567 'python', |
| 568 'src/third_party/binutils/download.py', |
| 569 ], |
| 570 }, |
560 { | 571 { |
561 # Pull clang if needed or requested via GYP_DEFINES. | 572 # Pull clang if needed or requested via GYP_DEFINES. |
562 # Note: On Win, this should run after win_toolchain, as it may use it. | 573 # Note: On Win, this should run after win_toolchain, as it may use it. |
563 'name': 'clang', | 574 'name': 'clang', |
564 'pattern': '.', | 575 'pattern': '.', |
565 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 576 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
566 }, | 577 }, |
567 { | 578 { |
568 # Update LASTCHANGE. | 579 # Update LASTCHANGE. |
569 'name': 'lastchange', | 580 'name': 'lastchange', |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 'name': 'clang_format_linux', | 651 'name': 'clang_format_linux', |
641 'pattern': '.', | 652 'pattern': '.', |
642 'action': [ 'download_from_google_storage', | 653 'action': [ 'download_from_google_storage', |
643 '--no_resume', | 654 '--no_resume', |
644 '--platform=linux*', | 655 '--platform=linux*', |
645 '--no_auth', | 656 '--no_auth', |
646 '--bucket', 'chromium-clang-format', | 657 '--bucket', 'chromium-clang-format', |
647 '-s', 'src/buildtools/linux64/clang-format.sha1', | 658 '-s', 'src/buildtools/linux64/clang-format.sha1', |
648 ], | 659 ], |
649 }, | 660 }, |
650 # Pull binutils for linux, enabled debug fission for faster linking / | |
651 # debugging when used with clang on Ubuntu Precise. | |
652 # https://code.google.com/p/chromium/issues/detail?id=352046 | |
653 { | |
654 'name': 'binutils', | |
655 'pattern': 'src/third_party/binutils', | |
656 'action': [ | |
657 'python', | |
658 'src/third_party/binutils/download.py', | |
659 ], | |
660 }, | |
661 # Pull eu-strip binaries using checked-in hashes. | 661 # Pull eu-strip binaries using checked-in hashes. |
662 { | 662 { |
663 'name': 'eu-strip', | 663 'name': 'eu-strip', |
664 'pattern': '.', | 664 'pattern': '.', |
665 'action': [ 'download_from_google_storage', | 665 'action': [ 'download_from_google_storage', |
666 '--no_resume', | 666 '--no_resume', |
667 '--platform=linux*', | 667 '--platform=linux*', |
668 '--no_auth', | 668 '--no_auth', |
669 '--bucket', 'chromium-eu-strip', | 669 '--bucket', 'chromium-eu-strip', |
670 '-s', 'src/build/linux/bin/eu-strip.sha1', | 670 '-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. | 757 # corresponding .py files have already been deleted. |
758 'name': 'remove_stale_pyc_files', | 758 'name': 'remove_stale_pyc_files', |
759 'pattern': 'src/tools/.*\\.py', | 759 'pattern': 'src/tools/.*\\.py', |
760 'action': [ | 760 'action': [ |
761 'python', | 761 'python', |
762 'src/tools/remove_stale_pyc_files.py', | 762 'src/tools/remove_stale_pyc_files.py', |
763 'src/tools', | 763 'src/tools', |
764 ], | 764 ], |
765 }, | 765 }, |
766 ] | 766 ] |
OLD | NEW |