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

Side by Side Diff: DEPS

Issue 799673003: Always download google_play_services zip package instead of rsync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't manually check returncode. Created 5 years, 11 months 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 'python', 551 'python',
552 'src/build/download_nacl_toolchains.py', 552 'src/build/download_nacl_toolchains.py',
553 ], 553 ],
554 }, 554 },
555 { 555 {
556 # This downloads SDK extras and puts them in the 556 # This downloads SDK extras and puts them in the
557 # third_party/android_tools/sdk/extras directory on the bots. Developers 557 # third_party/android_tools/sdk/extras directory on the bots. Developers
558 # need to manually install these packages and accept the ToS. 558 # need to manually install these packages and accept the ToS.
559 'name': 'sdkextras', 559 'name': 'sdkextras',
560 'pattern': '.', 560 'pattern': '.',
561 # Make sure to add package to .gitignore in third_party/android_tools. 561 # When adding a new sdk extras package to download, add the package
562 # directory and zip file to .gitignore in third_party/android_tools.
562 'action': ['python', 'src/build/download_sdk_extras.py', 563 'action': ['python', 'src/build/download_sdk_extras.py',
563 'google_google_play_services_21.0.0'], 564 'google_google_play_services_21.0.0.zip'],
564 }, 565 },
565 { 566 {
566 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. 567 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed.
567 # This sysroot updates at about the same rate that the chrome build deps 568 # This sysroot updates at about the same rate that the chrome build deps
568 # change. This script is a no-op except for linux users who are doing 569 # change. This script is a no-op except for linux users who are doing
569 # official chrome builds. 570 # official chrome builds.
570 'name': 'sysroot', 571 'name': 'sysroot',
571 'pattern': '.', 572 'pattern': '.',
572 'action': [ 573 'action': [
573 'python', 574 'python',
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 # corresponding .py files have already been deleted. 793 # corresponding .py files have already been deleted.
793 'name': 'remove_stale_pyc_files', 794 'name': 'remove_stale_pyc_files',
794 'pattern': 'src/tools/.*\\.py', 795 'pattern': 'src/tools/.*\\.py',
795 'action': [ 796 'action': [
796 'python', 797 'python',
797 'src/tools/remove_stale_pyc_files.py', 798 'src/tools/remove_stale_pyc_files.py',
798 'src/tools', 799 'src/tools',
799 ], 800 ],
800 }, 801 },
801 ] 802 ]
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