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

Side by Side Diff: DEPS

Issue 125593004: Add node.js gsutil .sha1 files. (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 | « no previous file | tools/nodejs/LICENSE » ('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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 }, 639 },
640 { 640 {
641 # Update LASTCHANGE.blink. This is also run by export_tarball.py in 641 # Update LASTCHANGE.blink. This is also run by export_tarball.py in
642 # src/tools/export_tarball - please keep them in sync. 642 # src/tools/export_tarball - please keep them in sync.
643 "name": "lastchange", 643 "name": "lastchange",
644 "pattern": ".", 644 "pattern": ".",
645 "action": ["python", "src/build/util/lastchange.py", 645 "action": ["python", "src/build/util/lastchange.py",
646 "-s", "src/third_party/WebKit", 646 "-s", "src/third_party/WebKit",
647 "-o", "src/build/util/LASTCHANGE.blink"], 647 "-o", "src/build/util/LASTCHANGE.blink"],
648 }, 648 },
649 # Pull node.js binaries.
650 {
651 "name": "nodejs_win",
652 "pattern": "src/tools/nodejs/win/node.exe.sha1",
653 "action": [ "download_from_google_storage",
654 "--no_resume",
655 "--platform=win32",
656 "--no_auth",
657 "--bucket", "chromium-nodejs",
658 "-s", "src/tools/nodejs/win/node.exe.sha1",
659 ],
660 },
661 {
662 "name": "nodejs_mac",
663 "pattern": "src/tools/nodejs/mac/node.sha1",
664 "action": [ "download_from_google_storage",
665 "--no_resume",
666 "--platform=darwin",
667 "--no_auth",
668 "--bucket", "chromium-nodejs",
669 "-s", "src/tools/nodejs/mac/node.sha1",
670 ],
671 },
672 {
673 "name": "nodejs_linux",
Ryan Tseng 2014/01/07 21:18:00 You can probably combine this and the one below in
raymes 2014/01/07 22:56:54 I'm not 100% clear on what you mean :) Could you p
Ryan Tseng 2014/01/07 23:00:45 So this would be { "name": "nodejs_linux", "
674 "pattern": "src/tools/nodejs/linux/node.sha1",
675 "action": [ "download_from_google_storage",
676 "--no_resume",
677 "--platform=linux*",
678 "--no_auth",
679 "--bucket", "chromium-nodejs",
680 "-s", "src/tools/nodejs/linux/node.sha1",
681 ],
682 },
683 {
684 "name": "nodejs_linux32",
685 "pattern": "src/tools/nodejs/linux/node32.sha1",
686 "action": [ "download_from_google_storage",
687 "--no_resume",
688 "--platform=linux*",
689 "--no_auth",
690 "--bucket", "chromium-nodejs",
691 "-s", "src/tools/nodejs/linux/node32.sha1",
692 ],
693 },
649 # Pull GN binaries. This needs to be before running GYP below. 694 # Pull GN binaries. This needs to be before running GYP below.
650 { 695 {
651 "name": "gn_win", 696 "name": "gn_win",
652 "pattern": "src/tools/gn/bin/win/gn.exe.sha1", 697 "pattern": "src/tools/gn/bin/win/gn.exe.sha1",
653 "action": [ "download_from_google_storage", 698 "action": [ "download_from_google_storage",
654 "--no_resume", 699 "--no_resume",
655 "--platform=win32", 700 "--platform=win32",
656 "--no_auth", 701 "--no_auth",
657 "--bucket", "chromium-gn", 702 "--bucket", "chromium-gn",
658 "-s", "src/tools/gn/bin/win/gn.exe.sha1", 703 "-s", "src/tools/gn/bin/win/gn.exe.sha1",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 "pattern": ".", 742 "pattern": ".",
698 "action": ["python", "src/build/gyp_chromium"], 743 "action": ["python", "src/build/gyp_chromium"],
699 }, 744 },
700 { 745 {
701 # Check for landmines (reasons to clobber the build). 746 # Check for landmines (reasons to clobber the build).
702 "name": "landmines", 747 "name": "landmines",
703 "pattern": ".", 748 "pattern": ".",
704 "action": ["python", "src/build/landmines.py"], 749 "action": ["python", "src/build/landmines.py"],
705 }, 750 },
706 ] 751 ]
OLDNEW
« no previous file with comments | « no previous file | tools/nodejs/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698