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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 # Done in lieu of building the toolchain from scratch as it can take | 540 # Done in lieu of building the toolchain from scratch as it can take |
541 # anywhere from 30 minutes to 4 hours depending on platform to build. | 541 # anywhere from 30 minutes to 4 hours depending on platform to build. |
542 'name': 'nacltools', | 542 'name': 'nacltools', |
543 'pattern': '.', | 543 'pattern': '.', |
544 'action': [ | 544 'action': [ |
545 'python', 'src/build/download_nacl_toolchains.py', | 545 'python', 'src/build/download_nacl_toolchains.py', |
546 '--exclude', 'arm_trusted', | 546 '--exclude', 'arm_trusted', |
547 ], | 547 ], |
548 }, | 548 }, |
549 { | 549 { |
550 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates | |
551 # at about the same rate that the chrome build deps change. | |
552 # This script is a no-op except for linux users who have | |
553 # target_arch=arm in their GYP_DEFINES. | |
554 'name': 'sysroot', | |
555 'pattern': '.', | |
556 'action': ['python', 'src/build/linux/install-arm-sysroot.py', | |
557 '--linux-only'], | |
558 }, | |
559 { | |
560 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. | 550 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. |
561 # This sysroot updates at about the same rate that the chrome build deps | 551 # This sysroot updates at about the same rate that the chrome build deps |
562 # change. This script is a no-op except for linux users who are doing | 552 # change. This script is a no-op except for linux users who are doing |
563 # official chrome builds. | 553 # official chrome builds. |
564 'name': 'sysroot', | 554 'name': 'sysroot', |
565 'pattern': '.', | 555 'pattern': '.', |
566 'action': [ | 556 'action': [ |
567 'python', | 557 'python', |
568 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | 558 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', |
569 '--linux-only', | 559 '--linux-only', |
570 '--arch=amd64'], | 560 '--arch=amd64'], |
571 }, | 561 }, |
572 { | 562 { |
573 # Same as above, but for 32-bit Linux. | 563 # Same as above, but for 32-bit Linux. |
574 'name': 'sysroot', | 564 'name': 'sysroot', |
575 'pattern': '.', | 565 'pattern': '.', |
576 'action': [ | 566 'action': [ |
577 'python', | 567 'python', |
578 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | 568 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', |
579 '--linux-only', | 569 '--linux-only', |
580 '--arch=i386'], | 570 '--arch=i386'], |
581 }, | 571 }, |
582 { | 572 { |
| 573 # Same as above, but for ARM Linux. |
| 574 'name': 'sysroot', |
| 575 'pattern': '.', |
| 576 'action': [ |
| 577 'python', |
| 578 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', |
| 579 '--linux-only', |
| 580 '--arch=arm'], |
| 581 }, |
| 582 { |
583 # Update the Windows toolchain if necessary. | 583 # Update the Windows toolchain if necessary. |
584 'name': 'win_toolchain', | 584 'name': 'win_toolchain', |
585 'pattern': '.', | 585 'pattern': '.', |
586 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 586 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
587 }, | 587 }, |
588 { | 588 { |
589 # Pull clang if needed or requested via GYP_DEFINES. | 589 # Pull clang if needed or requested via GYP_DEFINES. |
590 # Note: On Win, this should run after win_toolchain, as it may use it. | 590 # Note: On Win, this should run after win_toolchain, as it may use it. |
591 'name': 'clang', | 591 'name': 'clang', |
592 'pattern': '.', | 592 'pattern': '.', |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 # corresponding .py files have already been deleted. | 770 # corresponding .py files have already been deleted. |
771 'name': 'remove_stale_pyc_files', | 771 'name': 'remove_stale_pyc_files', |
772 'pattern': 'src/tools/.*\\.py', | 772 'pattern': 'src/tools/.*\\.py', |
773 'action': [ | 773 'action': [ |
774 'python', | 774 'python', |
775 'src/tools/remove_stale_pyc_files.py', | 775 'src/tools/remove_stale_pyc_files.py', |
776 'src/tools', | 776 'src/tools', |
777 ], | 777 ], |
778 }, | 778 }, |
779 ] | 779 ] |
OLD | NEW |