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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 # Done in lieu of building the toolchain from scratch as it can take | 544 # Done in lieu of building the toolchain from scratch as it can take |
545 # anywhere from 30 minutes to 4 hours depending on platform to build. | 545 # anywhere from 30 minutes to 4 hours depending on platform to build. |
546 'name': 'nacltools', | 546 'name': 'nacltools', |
547 'pattern': '.', | 547 'pattern': '.', |
548 'action': [ | 548 'action': [ |
549 'python', 'src/build/download_nacl_toolchains.py', | 549 'python', 'src/build/download_nacl_toolchains.py', |
550 '--exclude', 'arm_trusted', | 550 '--exclude', 'arm_trusted', |
551 ], | 551 ], |
552 }, | 552 }, |
553 { | 553 { |
| 554 # This downloads SDK extras and puts them in the |
| 555 # third_party/android_tools/sdk/extras directory on the bots. Developers |
| 556 # need to manually install these packages and accept the ToS. |
| 557 'name': 'sdkextras', |
| 558 'pattern': '.', |
| 559 'action': ['python', 'src/build/download_sdk_extras.py'], |
| 560 }, |
| 561 { |
554 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. | 562 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. |
555 # This sysroot updates at about the same rate that the chrome build deps | 563 # This sysroot updates at about the same rate that the chrome build deps |
556 # change. This script is a no-op except for linux users who are doing | 564 # change. This script is a no-op except for linux users who are doing |
557 # official chrome builds. | 565 # official chrome builds. |
558 'name': 'sysroot', | 566 'name': 'sysroot', |
559 'pattern': '.', | 567 'pattern': '.', |
560 'action': [ | 568 'action': [ |
561 'python', | 569 'python', |
562 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | 570 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', |
563 '--linux-only', | 571 '--linux-only', |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 # corresponding .py files have already been deleted. | 782 # corresponding .py files have already been deleted. |
775 'name': 'remove_stale_pyc_files', | 783 'name': 'remove_stale_pyc_files', |
776 'pattern': 'src/tools/.*\\.py', | 784 'pattern': 'src/tools/.*\\.py', |
777 'action': [ | 785 'action': [ |
778 'python', | 786 'python', |
779 'src/tools/remove_stale_pyc_files.py', | 787 'src/tools/remove_stale_pyc_files.py', |
780 'src/tools', | 788 'src/tools', |
781 ], | 789 ], |
782 }, | 790 }, |
783 ] | 791 ] |
OLD | NEW |