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

Side by Side Diff: DEPS

Issue 135773003: Revert of Revert of Add clang-format binaries and scripts for all platforms (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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') | third_party/clang_format/README.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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 "name": "gn_linux32", 696 "name": "gn_linux32",
697 "pattern": "src/tools/gn/bin/linux/gn32.sha1", 697 "pattern": "src/tools/gn/bin/linux/gn32.sha1",
698 "action": [ "download_from_google_storage", 698 "action": [ "download_from_google_storage",
699 "--no_resume", 699 "--no_resume",
700 "--platform=linux*", 700 "--platform=linux*",
701 "--no_auth", 701 "--no_auth",
702 "--bucket", "chromium-gn", 702 "--bucket", "chromium-gn",
703 "-s", "src/tools/gn/bin/linux/gn32.sha1", 703 "-s", "src/tools/gn/bin/linux/gn32.sha1",
704 ], 704 ],
705 }, 705 },
706 # Pull clang-format binaries using checked-in hashes.
707 {
708 "name": "clang_format_win",
709 "pattern": "src/third_party/clang_format/bin/win/clang-format.exe.sha1",
710 "action": [ "download_from_google_storage",
711 "--no_resume",
712 "--platform=win32",
713 "--no_auth",
714 "--bucket", "chromium-clang-format",
715 "-s", "src/third_party/clang_format/bin/win/clang-format.exe.sha 1",
716 ],
717 },
718 {
719 "name": "clang_format_mac",
720 "pattern": "src/third_party/clang_format/bin/mac/clang-format.sha1",
721 "action": [ "download_from_google_storage",
722 "--no_resume",
723 "--platform=darwin",
724 "--no_auth",
725 "--bucket", "chromium-clang-format",
726 "-s", "src/third_party/clang_format/bin/mac/clang-format.sha1",
727 ],
728 },
729 {
730 "name": "clang_format_linux",
731 "pattern": "src/third_party/clang_format/bin/linux/clang-format.sha1",
732 "action": [ "download_from_google_storage",
733 "--no_resume",
734 "--platform=linux*",
735 "--no_auth",
736 "--bucket", "chromium-clang-format",
737 "-s", "src/third_party/clang_format/bin/linux/clang-format.sha1" ,
738 ],
739 },
706 { 740 {
707 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 741 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
708 "name": "gyp", 742 "name": "gyp",
709 "pattern": ".", 743 "pattern": ".",
710 "action": ["python", "src/build/gyp_chromium"], 744 "action": ["python", "src/build/gyp_chromium"],
711 }, 745 },
712 { 746 {
713 # Check for landmines (reasons to clobber the build). 747 # Check for landmines (reasons to clobber the build).
714 "name": "landmines", 748 "name": "landmines",
715 "pattern": ".", 749 "pattern": ".",
716 "action": ["python", "src/build/landmines.py"], 750 "action": ["python", "src/build/landmines.py"],
717 }, 751 },
718 ] 752 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | third_party/clang_format/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698