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 | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
8 # gclient runhooks | 8 # gclient runhooks |
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
633 }, | 633 }, |
634 { | 634 { |
635 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 635 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes |
636 # zero seconds to run. If something changed, it downloads a prebuilt clang, | 636 # zero seconds to run. If something changed, it downloads a prebuilt clang, |
637 # which takes ~20s, but clang speeds up builds by more than 20s. | 637 # which takes ~20s, but clang speeds up builds by more than 20s. |
638 "name": "clang", | 638 "name": "clang", |
639 "pattern": ".", | 639 "pattern": ".", |
640 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 640 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
641 }, | 641 }, |
642 { | 642 { |
643 # Update the cygwin mount on Windows. | |
644 "name": "cygwin", | |
645 "pattern": ".", | |
646 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], | |
Nico
2014/01/31 23:24:30
And this isn't needed for the lighttpd stuff?
| |
647 }, | |
648 { | |
649 # Update LASTCHANGE. This is also run by export_tarball.py in | 643 # Update LASTCHANGE. This is also run by export_tarball.py in |
650 # src/tools/export_tarball - please keep them in sync. | 644 # src/tools/export_tarball - please keep them in sync. |
651 "name": "lastchange", | 645 "name": "lastchange", |
652 "pattern": ".", | 646 "pattern": ".", |
653 "action": ["python", "src/build/util/lastchange.py", | 647 "action": ["python", "src/build/util/lastchange.py", |
654 "-o", "src/build/util/LASTCHANGE"], | 648 "-o", "src/build/util/LASTCHANGE"], |
655 }, | 649 }, |
656 { | 650 { |
657 # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 651 # Update LASTCHANGE.blink. This is also run by export_tarball.py in |
658 # src/tools/export_tarball - please keep them in sync. | 652 # src/tools/export_tarball - please keep them in sync. |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
759 "pattern": ".", | 753 "pattern": ".", |
760 "action": ["python", "src/build/gyp_chromium"], | 754 "action": ["python", "src/build/gyp_chromium"], |
761 }, | 755 }, |
762 { | 756 { |
763 # Check for landmines (reasons to clobber the build). | 757 # Check for landmines (reasons to clobber the build). |
764 "name": "landmines", | 758 "name": "landmines", |
765 "pattern": ".", | 759 "pattern": ".", |
766 "action": ["python", "src/build/landmines.py"], | 760 "action": ["python", "src/build/landmines.py"], |
767 }, | 761 }, |
768 ] | 762 ] |
OLD | NEW |