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

Side by Side Diff: DEPS

Issue 226643011: Split toolchain update and install lookup to make generation faster (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename to Update Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « .gitignore ('k') | build/gyp_chromium » ('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 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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 "--linux-only", 630 "--linux-only",
631 "--arch=i386"], 631 "--arch=i386"],
632 }, 632 },
633 { 633 {
634 # Pull clang if on Mac or clang is requested via GYP_DEFINES. 634 # Pull clang if on Mac or clang is requested via GYP_DEFINES.
635 "name": "clang", 635 "name": "clang",
636 "pattern": ".", 636 "pattern": ".",
637 "action": ["python", "src/tools/clang/scripts/update.py", "--if-needed"], 637 "action": ["python", "src/tools/clang/scripts/update.py", "--if-needed"],
638 }, 638 },
639 { 639 {
640 # Update the Windows toolchain if necessary.
641 "name": "win_toolchain",
642 "pattern": ".",
643 "action": ["python", "src/build/vs_toolchain.py", "update"],
644 },
645 {
640 # Update LASTCHANGE. This is also run by export_tarball.py in 646 # Update LASTCHANGE. This is also run by export_tarball.py in
641 # src/tools/export_tarball - please keep them in sync. 647 # src/tools/export_tarball - please keep them in sync.
642 "name": "lastchange", 648 "name": "lastchange",
643 "pattern": ".", 649 "pattern": ".",
644 "action": ["python", "src/build/util/lastchange.py", 650 "action": ["python", "src/build/util/lastchange.py",
645 "-o", "src/build/util/LASTCHANGE"], 651 "-o", "src/build/util/LASTCHANGE"],
646 }, 652 },
647 { 653 {
648 # Update LASTCHANGE.blink. This is also run by export_tarball.py in 654 # Update LASTCHANGE.blink. This is also run by export_tarball.py in
649 # src/tools/export_tarball - please keep them in sync. 655 # src/tools/export_tarball - please keep them in sync.
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 "-s", "src/build/linux/bin/eu-strip.sha1", 761 "-s", "src/build/linux/bin/eu-strip.sha1",
756 ], 762 ],
757 }, 763 },
758 { 764 {
759 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 765 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
760 "name": "gyp", 766 "name": "gyp",
761 "pattern": ".", 767 "pattern": ".",
762 "action": ["python", "src/build/gyp_chromium"], 768 "action": ["python", "src/build/gyp_chromium"],
763 }, 769 },
764 ] 770 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | build/gyp_chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698