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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 { | 567 { |
568 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. | 568 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. |
569 # This sysroot updates at about the same rate that the chrome build deps | 569 # This sysroot updates at about the same rate that the chrome build deps |
570 # change. This script is a no-op except for linux users who are doing | 570 # change. This script is a no-op except for linux users who are doing |
571 # official chrome builds. | 571 # official chrome builds. |
572 'name': 'sysroot', | 572 'name': 'sysroot', |
573 'pattern': '.', | 573 'pattern': '.', |
574 'action': [ | 574 'action': [ |
575 'python', | 575 'python', |
576 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | 576 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', |
577 '--linux-only', | 577 '--linux-only'], |
578 '--arch=amd64'], | |
579 }, | |
580 { | |
581 # Same as above, but for 32-bit Linux. | |
582 'name': 'sysroot', | |
583 'pattern': '.', | |
584 'action': [ | |
585 'python', | |
586 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | |
587 '--linux-only', | |
588 '--arch=i386'], | |
589 }, | |
590 { | |
591 # Same as above, but for ARM Linux. | |
592 'name': 'sysroot', | |
593 'pattern': '.', | |
594 'action': [ | |
595 'python', | |
596 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | |
597 '--linux-only', | |
598 '--arch=arm'], | |
599 }, | 578 }, |
600 { | 579 { |
601 # Update the Windows toolchain if necessary. | 580 # Update the Windows toolchain if necessary. |
602 'name': 'win_toolchain', | 581 'name': 'win_toolchain', |
603 'pattern': '.', | 582 'pattern': '.', |
604 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 583 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
605 }, | 584 }, |
606 { | 585 { |
607 # Pull clang if needed or requested via GYP_DEFINES. | 586 # Pull clang if needed or requested via GYP_DEFINES. |
608 # Note: On Win, this should run after win_toolchain, as it may use it. | 587 # Note: On Win, this should run after win_toolchain, as it may use it. |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 # corresponding .py files have already been deleted. | 773 # corresponding .py files have already been deleted. |
795 'name': 'remove_stale_pyc_files', | 774 'name': 'remove_stale_pyc_files', |
796 'pattern': 'src/tools/.*\\.py', | 775 'pattern': 'src/tools/.*\\.py', |
797 'action': [ | 776 'action': [ |
798 'python', | 777 'python', |
799 'src/tools/remove_stale_pyc_files.py', | 778 'src/tools/remove_stale_pyc_files.py', |
800 'src/tools', | 779 'src/tools', |
801 ], | 780 ], |
802 }, | 781 }, |
803 ] | 782 ] |
OLD | NEW |