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