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