| 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 # This downloads SDK extras and puts them in the | 526 # This downloads SDK extras and puts them in the |
| 527 # third_party/android_tools/sdk/extras directory on the bots. Developers | 527 # third_party/android_tools/sdk/extras directory on the bots. Developers |
| 528 # need to manually install these packages and accept the ToS. | 528 # need to manually install these packages and accept the ToS. |
| 529 'name': 'sdkextras', | 529 'name': 'sdkextras', |
| 530 'pattern': '.', | 530 'pattern': '.', |
| 531 # When adding a new sdk extras package to download, add the package | 531 # When adding a new sdk extras package to download, add the package |
| 532 # directory and zip file to .gitignore in third_party/android_tools. | 532 # directory and zip file to .gitignore in third_party/android_tools. |
| 533 'action': ['python', 'src/build/download_sdk_extras.py'], | 533 'action': ['python', 'src/build/download_sdk_extras.py'], |
| 534 }, | 534 }, |
| 535 { | 535 { |
| 536 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. | 536 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 537 # This sysroot updates at about the same rate that the chrome build deps | 537 # This sysroot updates at about the same rate that the chrome build deps |
| 538 # change. This script is a no-op except for linux users who are doing | 538 # change. This script is a no-op except for linux users who are doing |
| 539 # official chrome builds. | 539 # official chrome builds or cross compiling. |
| 540 'name': 'sysroot', | 540 'name': 'sysroot', |
| 541 'pattern': '.', | 541 'pattern': '.', |
| 542 'action': [ | 542 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 543 'python', | 543 '--running-as-hook'], |
| 544 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo
t.py', | |
| 545 '--running-as-hook'], | |
| 546 }, | 544 }, |
| 547 { | 545 { |
| 548 # Update the Windows toolchain if necessary. | 546 # Update the Windows toolchain if necessary. |
| 549 'name': 'win_toolchain', | 547 'name': 'win_toolchain', |
| 550 'pattern': '.', | 548 'pattern': '.', |
| 551 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 549 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
| 552 }, | 550 }, |
| 553 # Pull binutils for linux, enabled debug fission for faster linking / | 551 # Pull binutils for linux, enabled debug fission for faster linking / |
| 554 # debugging when used with clang on Ubuntu Precise. | 552 # debugging when used with clang on Ubuntu Precise. |
| 555 # https://code.google.com/p/chromium/issues/detail?id=352046 | 553 # https://code.google.com/p/chromium/issues/detail?id=352046 |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 # migration completes (let's say Sep 1 2014). | 789 # migration completes (let's say Sep 1 2014). |
| 792 'name': 'check_git_config', | 790 'name': 'check_git_config', |
| 793 'pattern': '.', | 791 'pattern': '.', |
| 794 'action': [ | 792 'action': [ |
| 795 'python', | 793 'python', |
| 796 'src/tools/check_git_config.py', | 794 'src/tools/check_git_config.py', |
| 797 '--running-as-hook', | 795 '--running-as-hook', |
| 798 ], | 796 ], |
| 799 }, | 797 }, |
| 800 ] | 798 ] |
| OLD | NEW |