Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: DEPS

Issue 709663002: Add gclient hook to download SDK extras on bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use gclient rsync and introduce versioning. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/download_sdk_extras.py » ('j') | build/download_sdk_extras.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 # Done in lieu of building the toolchain from scratch as it can take 543 # Done in lieu of building the toolchain from scratch as it can take
544 # anywhere from 30 minutes to 4 hours depending on platform to build. 544 # anywhere from 30 minutes to 4 hours depending on platform to build.
545 'name': 'nacltools', 545 'name': 'nacltools',
546 'pattern': '.', 546 'pattern': '.',
547 'action': [ 547 'action': [
548 'python', 548 'python',
549 'src/build/download_nacl_toolchains.py', 549 'src/build/download_nacl_toolchains.py',
550 ], 550 ],
551 }, 551 },
552 { 552 {
553 # This downloads SDK extras and puts them in the
554 # third_party/android_tools/sdk/extras directory on the bots. Developers
555 # need to manually install these packages and accept the ToS.
556 'name': 'sdkextras',
557 'pattern': '.',
558 'action': ['python', 'src/build/download_sdk_extras.py',
559 'google_google_play_services_21.0.0'],
navabi 2014/11/21 09:40:29 Added this as the versioning scheme. In the google
560 },
561 {
553 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. 562 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed.
554 # 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
555 # 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
556 # official chrome builds. 565 # official chrome builds.
557 'name': 'sysroot', 566 'name': 'sysroot',
558 'pattern': '.', 567 'pattern': '.',
559 'action': [ 568 'action': [
560 'python', 569 'python',
561 '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',
562 '--linux-only', 571 '--linux-only',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 # corresponding .py files have already been deleted. 788 # corresponding .py files have already been deleted.
780 'name': 'remove_stale_pyc_files', 789 'name': 'remove_stale_pyc_files',
781 'pattern': 'src/tools/.*\\.py', 790 'pattern': 'src/tools/.*\\.py',
782 'action': [ 791 'action': [
783 'python', 792 'python',
784 'src/tools/remove_stale_pyc_files.py', 793 'src/tools/remove_stale_pyc_files.py',
785 'src/tools', 794 'src/tools',
786 ], 795 ],
787 }, 796 },
788 ] 797 ]
OLDNEW
« no previous file with comments | « no previous file | build/download_sdk_extras.py » ('j') | build/download_sdk_extras.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698