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

Side by Side Diff: DEPS

Issue 587383003: Make Clang's update.py use the Win toolchain under depot_tools if available (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Import vs_toolchain.py Created 6 years, 3 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 | tools/clang/scripts/update.py » ('j') | tools/clang/scripts/update.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is automatically processed to create .DEPS.git which is the file 1 # This file is automatically processed to create .DEPS.git which is the file
2 # that gclient uses under git. 2 # that gclient uses under git.
3 # 3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit 4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 # 5 #
6 # To test manually, run: 6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
8 # where <gcliendir> is the absolute path to the directory containing the 8 # where <gcliendir> is the absolute path to the directory containing the
9 # .gclient file (the parent of 'src'). 9 # .gclient file (the parent of 'src').
10 # 10 #
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 # Same as above, but for 32-bit Linux. 589 # Same as above, but for 32-bit Linux.
590 'name': 'sysroot', 590 'name': 'sysroot',
591 'pattern': '.', 591 'pattern': '.',
592 'action': [ 592 'action': [
593 'python', 593 'python',
594 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py', 594 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py',
595 '--linux-only', 595 '--linux-only',
596 '--arch=i386'], 596 '--arch=i386'],
597 }, 597 },
598 { 598 {
599 # Pull clang if on Mac or clang is requested via GYP_DEFINES.
600 'name': 'clang',
601 'pattern': '.',
602 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'],
603 },
604 {
605 # Update the Windows toolchain if necessary. 599 # Update the Windows toolchain if necessary.
606 'name': 'win_toolchain', 600 'name': 'win_toolchain',
607 'pattern': '.', 601 'pattern': '.',
608 'action': ['python', 'src/build/vs_toolchain.py', 'update'], 602 'action': ['python', 'src/build/vs_toolchain.py', 'update'],
609 }, 603 },
610 { 604 {
605 # Pull clang if needed or requested via GYP_DEFINES.
606 # Note: On Win, this should run after win_toolchain, as it may use it.
607 'name': 'clang',
608 'pattern': '.',
609 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'],
610 },
611 {
611 # Update LASTCHANGE. This is also run by export_tarball.py in 612 # Update LASTCHANGE. This is also run by export_tarball.py in
612 # src/tools/export_tarball - please keep them in sync. 613 # src/tools/export_tarball - please keep them in sync.
613 'name': 'lastchange', 614 'name': 'lastchange',
614 'pattern': '.', 615 'pattern': '.',
615 'action': ['python', 'src/build/util/lastchange.py', 616 'action': ['python', 'src/build/util/lastchange.py',
616 '-o', 'src/build/util/LASTCHANGE'], 617 '-o', 'src/build/util/LASTCHANGE'],
617 }, 618 },
618 { 619 {
619 # Update LASTCHANGE.blink. This is also run by export_tarball.py in 620 # Update LASTCHANGE.blink. This is also run by export_tarball.py in
620 # src/tools/export_tarball - please keep them in sync. 621 # src/tools/export_tarball - please keep them in sync.
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ]
OLDNEW
« no previous file with comments | « no previous file | tools/clang/scripts/update.py » ('j') | tools/clang/scripts/update.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698