Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: DEPS

Issue 834133003: Only run install-debian.wheezy.sysroot.py once during runhooks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 { 568 {
569 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. 569 # 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 570 # 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 571 # change. This script is a no-op except for linux users who are doing
572 # official chrome builds. 572 # official chrome builds.
573 'name': 'sysroot', 573 'name': 'sysroot',
574 'pattern': '.', 574 'pattern': '.',
575 'action': [ 575 'action': [
576 'python', 576 'python',
577 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py', 577 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py',
578 '--linux-only', 578 '--linux-only'],
579 '--arch=amd64'],
580 },
581 {
582 # Same as above, but for 32-bit Linux.
583 'name': 'sysroot',
584 'pattern': '.',
585 'action': [
586 'python',
587 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py',
588 '--linux-only',
589 '--arch=i386'],
590 },
591 {
592 # Same as above, but for ARM Linux.
593 'name': 'sysroot',
594 'pattern': '.',
595 'action': [
596 'python',
597 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py',
598 '--linux-only',
599 '--arch=arm'],
600 }, 579 },
601 { 580 {
602 # Update the Windows toolchain if necessary. 581 # Update the Windows toolchain if necessary.
603 'name': 'win_toolchain', 582 'name': 'win_toolchain',
604 'pattern': '.', 583 'pattern': '.',
605 'action': ['python', 'src/build/vs_toolchain.py', 'update'], 584 'action': ['python', 'src/build/vs_toolchain.py', 'update'],
606 }, 585 },
607 { 586 {
608 # Pull clang if needed or requested via GYP_DEFINES. 587 # Pull clang if needed or requested via GYP_DEFINES.
609 # Note: On Win, this should run after win_toolchain, as it may use it. 588 # Note: On Win, this should run after win_toolchain, as it may use it.
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 # corresponding .py files have already been deleted. 774 # corresponding .py files have already been deleted.
796 'name': 'remove_stale_pyc_files', 775 'name': 'remove_stale_pyc_files',
797 'pattern': 'src/tools/.*\\.py', 776 'pattern': 'src/tools/.*\\.py',
798 'action': [ 777 'action': [
799 'python', 778 'python',
800 'src/tools/remove_stale_pyc_files.py', 779 'src/tools/remove_stale_pyc_files.py',
801 'src/tools', 780 'src/tools',
802 ], 781 ],
803 }, 782 },
804 ] 783 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698