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

Side by Side Diff: trunk/src/DEPS

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

Powered by Google App Engine
This is Rietveld 408576698