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'], |
579 }, | 600 }, |
580 { | 601 { |
581 # Update the Windows toolchain if necessary. | 602 # Update the Windows toolchain if necessary. |
582 'name': 'win_toolchain', | 603 'name': 'win_toolchain', |
583 'pattern': '.', | 604 'pattern': '.', |
584 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 605 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
585 }, | 606 }, |
586 { | 607 { |
587 # Pull clang if needed or requested via GYP_DEFINES. | 608 # Pull clang if needed or requested via GYP_DEFINES. |
588 # Note: On Win, this should run after win_toolchain, as it may use it. | 609 # 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... |
774 # corresponding .py files have already been deleted. | 795 # corresponding .py files have already been deleted. |
775 'name': 'remove_stale_pyc_files', | 796 'name': 'remove_stale_pyc_files', |
776 'pattern': 'src/tools/.*\\.py', | 797 'pattern': 'src/tools/.*\\.py', |
777 'action': [ | 798 'action': [ |
778 'python', | 799 'python', |
779 'src/tools/remove_stale_pyc_files.py', | 800 'src/tools/remove_stale_pyc_files.py', |
780 'src/tools', | 801 'src/tools', |
781 ], | 802 ], |
782 }, | 803 }, |
783 ] | 804 ] |
OLD | NEW |