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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 ], | 555 ], |
556 }, | 556 }, |
557 { | 557 { |
558 # This downloads SDK extras and puts them in the | 558 # This downloads SDK extras and puts them in the |
559 # third_party/android_tools/sdk/extras directory on the bots. Developers | 559 # third_party/android_tools/sdk/extras directory on the bots. Developers |
560 # need to manually install these packages and accept the ToS. | 560 # need to manually install these packages and accept the ToS. |
561 'name': 'sdkextras', | 561 'name': 'sdkextras', |
562 'pattern': '.', | 562 'pattern': '.', |
563 # When adding a new sdk extras package to download, add the package | 563 # When adding a new sdk extras package to download, add the package |
564 # directory and zip file to .gitignore in third_party/android_tools. | 564 # directory and zip file to .gitignore in third_party/android_tools. |
565 'action': ['python', 'src/build/download_sdk_extras.py', | 565 'action': ['python', 'src/build/download_sdk_extras.py'], |
566 'google_google_play_services_21.0.0.zip'], | |
567 }, | 566 }, |
568 { | 567 { |
569 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. | 568 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. |
570 # This sysroot updates at about the same rate that the chrome build deps | 569 # This sysroot updates at about the same rate that the chrome build deps |
571 # change. This script is a no-op except for linux users who are doing | 570 # change. This script is a no-op except for linux users who are doing |
572 # official chrome builds. | 571 # official chrome builds. |
573 'name': 'sysroot', | 572 'name': 'sysroot', |
574 'pattern': '.', | 573 'pattern': '.', |
575 'action': [ | 574 'action': [ |
576 'python', | 575 'python', |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 # corresponding .py files have already been deleted. | 794 # corresponding .py files have already been deleted. |
796 'name': 'remove_stale_pyc_files', | 795 'name': 'remove_stale_pyc_files', |
797 'pattern': 'src/tools/.*\\.py', | 796 'pattern': 'src/tools/.*\\.py', |
798 'action': [ | 797 'action': [ |
799 'python', | 798 'python', |
800 'src/tools/remove_stale_pyc_files.py', | 799 'src/tools/remove_stale_pyc_files.py', |
801 'src/tools', | 800 'src/tools', |
802 ], | 801 ], |
803 }, | 802 }, |
804 ] | 803 ] |
OLD | NEW |