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

Side by Side Diff: DEPS

Issue 70493006: Auto-updating script for Windows toolchain (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove --local debugging Created 7 years 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
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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 }, 634 },
635 { 635 {
636 # Update LASTCHANGE.blink. This is also run by export_tarball.py in 636 # Update LASTCHANGE.blink. This is also run by export_tarball.py in
637 # src/tools/export_tarball - please keep them in sync. 637 # src/tools/export_tarball - please keep them in sync.
638 "name": "lastchange", 638 "name": "lastchange",
639 "pattern": ".", 639 "pattern": ".",
640 "action": ["python", "src/build/util/lastchange.py", 640 "action": ["python", "src/build/util/lastchange.py",
641 "-s", "src/third_party/WebKit", 641 "-s", "src/third_party/WebKit",
642 "-o", "src/build/util/LASTCHANGE.blink"], 642 "-o", "src/build/util/LASTCHANGE.blink"],
643 }, 643 },
644 # Windows toolchain setup.
645 {
646 "name": "toolchain_win",
647 "pattern": "\\.sha1$",
M-A Ruel 2013/11/26 16:09:50 third_party/win_toolchain/toolchain\\.sha1
scottmg 2013/11/26 17:41:29 Done.
648 "action": [ "python",
649 "src/tools/win/toolchain/get_toolchain_if_necessary.py",
650 ],
651 },
644 # Pull GN binaries. This needs to be before running GYP below. 652 # Pull GN binaries. This needs to be before running GYP below.
645 { 653 {
646 "name": "gn_win", 654 "name": "gn_win",
647 "pattern": "src/tools/gn/bin/win/gn.exe.sha1", 655 "pattern": "src/tools/gn/bin/win/gn.exe.sha1",
648 "action": [ "download_from_google_storage", 656 "action": [ "download_from_google_storage",
649 "--no_resume", 657 "--no_resume",
650 "--platform=win32", 658 "--platform=win32",
651 "--no_auth", 659 "--no_auth",
652 "--bucket", "chromium-gn", 660 "--bucket", "chromium-gn",
653 "-s", "src/tools/gn/bin/win/gn.exe.sha1", 661 "-s", "src/tools/gn/bin/win/gn.exe.sha1",
(...skipping 27 matching lines...) Expand all
681 "pattern": ".", 689 "pattern": ".",
682 "action": ["python", "src/build/gyp_chromium"], 690 "action": ["python", "src/build/gyp_chromium"],
683 }, 691 },
684 { 692 {
685 # Check for landmines (reasons to clobber the build). 693 # Check for landmines (reasons to clobber the build).
686 "name": "landmines", 694 "name": "landmines",
687 "pattern": ".", 695 "pattern": ".",
688 "action": ["python", "src/build/landmines.py"], 696 "action": ["python", "src/build/landmines.py"],
689 }, 697 },
690 ] 698 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/win_toolchain/toolchain.sha1 » ('j') | tools/win/toolchain/get_toolchain_if_necessary.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698