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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 # Done in lieu of building the toolchain from scratch as it can take | 549 # Done in lieu of building the toolchain from scratch as it can take |
550 # anywhere from 30 minutes to 4 hours depending on platform to build. | 550 # anywhere from 30 minutes to 4 hours depending on platform to build. |
551 'name': 'nacltools', | 551 'name': 'nacltools', |
552 'pattern': '.', | 552 'pattern': '.', |
553 'action': [ | 553 'action': [ |
554 'python', | 554 'python', |
555 'src/build/download_nacl_toolchains.py', | 555 'src/build/download_nacl_toolchains.py', |
556 ], | 556 ], |
557 }, | 557 }, |
558 { | 558 { |
| 559 # This downloads SDK extras and puts them in the |
| 560 # third_party/android_tools/sdk/extras directory on the bots. Developers |
| 561 # need to manually install these packages and accept the ToS. |
| 562 'name': 'sdkextras', |
| 563 'pattern': '.', |
| 564 # Make sure to add package to .gitignore in third_party/android_tools. |
| 565 'action': ['python', 'src/build/download_sdk_extras.py', |
| 566 'google_google_play_services_21.0.0'], |
| 567 }, |
| 568 { |
559 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. | 569 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. |
560 # 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 |
561 # 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 |
562 # official chrome builds. | 572 # official chrome builds. |
563 'name': 'sysroot', | 573 'name': 'sysroot', |
564 'pattern': '.', | 574 'pattern': '.', |
565 'action': [ | 575 'action': [ |
566 'python', | 576 'python', |
567 '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', |
568 '--linux-only', | 578 '--linux-only', |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 # corresponding .py files have already been deleted. | 795 # corresponding .py files have already been deleted. |
786 'name': 'remove_stale_pyc_files', | 796 'name': 'remove_stale_pyc_files', |
787 'pattern': 'src/tools/.*\\.py', | 797 'pattern': 'src/tools/.*\\.py', |
788 'action': [ | 798 'action': [ |
789 'python', | 799 'python', |
790 'src/tools/remove_stale_pyc_files.py', | 800 'src/tools/remove_stale_pyc_files.py', |
791 'src/tools', | 801 'src/tools', |
792 ], | 802 ], |
793 }, | 803 }, |
794 ] | 804 ] |
OLD | NEW |