OLD | NEW |
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 Loading... |
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 Loading... |
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 ] |
OLD | NEW |