| 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 'pattern': '.', | 533 'pattern': '.', |
| 534 'action': [ | 534 'action': [ |
| 535 'python', | 535 'python', |
| 536 'src/build/download_nacl_toolchains.py', | 536 'src/build/download_nacl_toolchains.py', |
| 537 '--mode', 'nacl_core_sdk', | 537 '--mode', 'nacl_core_sdk', |
| 538 'sync', '--extract', | 538 'sync', '--extract', |
| 539 ], | 539 ], |
| 540 }, | 540 }, |
| 541 { | 541 { |
| 542 # This downloads SDK extras and puts them in the | 542 # This downloads SDK extras and puts them in the |
| 543 # third_party/android_tools/sdk/extras directory on the bots. Developers | 543 # third_party/android_tools/sdk/extras directory. |
| 544 # need to manually install these packages and accept the ToS. | |
| 545 'name': 'sdkextras', | 544 'name': 'sdkextras', |
| 546 'pattern': '.', | 545 'pattern': '.', |
| 547 # When adding a new sdk extras package to download, add the package | 546 # When adding a new sdk extras package to download, add the package |
| 548 # directory and zip file to .gitignore in third_party/android_tools. | 547 # directory and zip file to .gitignore in third_party/android_tools. |
| 549 'action': ['python', 'src/build/download_sdk_extras.py'], | 548 'action': ['python', |
| 549 'src/build/android/play_services/update.py', |
| 550 'download' |
| 551 ], |
| 550 }, | 552 }, |
| 551 { | 553 { |
| 552 # Downloads the current stable linux sysroot to build/linux/ if needed. | 554 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 553 # This sysroot updates at about the same rate that the chrome build deps | 555 # This sysroot updates at about the same rate that the chrome build deps |
| 554 # change. This script is a no-op except for linux users who are doing | 556 # change. This script is a no-op except for linux users who are doing |
| 555 # official chrome builds or cross compiling. | 557 # official chrome builds or cross compiling. |
| 556 'name': 'sysroot', | 558 'name': 'sysroot', |
| 557 'pattern': '.', | 559 'pattern': '.', |
| 558 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 560 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 559 '--running-as-hook'], | 561 '--running-as-hook'], |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 }, | 809 }, |
| 808 { | 810 { |
| 809 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 811 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 810 'name': 'gyp', | 812 'name': 'gyp', |
| 811 'pattern': '.', | 813 'pattern': '.', |
| 812 'action': ['python', 'src/build/gyp_chromium'], | 814 'action': ['python', 'src/build/gyp_chromium'], |
| 813 }, | 815 }, |
| 814 ] | 816 ] |
| 815 | 817 |
| 816 | 818 |
| OLD | NEW |