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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 ] |
OLD | NEW |