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

Side by Side Diff: DEPS

Issue 340153002: Add hooks to get the GN binaries in buildtools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | no next file » | 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 -w <gclientdir> 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
8 # where <gcliendir> is the absolute path to the directory containing the 8 # where <gcliendir> is the absolute path to the directory containing the
9 # .gclient file (the parent of "src"). 9 # .gclient file (the parent of "src").
10 # 10 #
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 }, 655 },
656 # Pull GN binaries. This needs to be before running GYP below. 656 # Pull GN binaries. This needs to be before running GYP below.
657 { 657 {
658 "name": "gn_win", 658 "name": "gn_win",
659 "pattern": ".", 659 "pattern": ".",
660 "action": [ "download_from_google_storage", 660 "action": [ "download_from_google_storage",
661 "--no_resume", 661 "--no_resume",
662 "--platform=win32", 662 "--platform=win32",
663 "--no_auth", 663 "--no_auth",
664 "--bucket", "chromium-gn", 664 "--bucket", "chromium-gn",
665 "-s", "src/tools/gn/bin/win/gn.exe.sha1", 665 "-s", "src/buildtools/win/gn.exe.sha1",
666 ], 666 ],
667 }, 667 },
668 { 668 {
669 "name": "gn_mac", 669 "name": "gn_mac",
670 "pattern": ".", 670 "pattern": ".",
671 "action": [ "download_from_google_storage", 671 "action": [ "download_from_google_storage",
672 "--no_resume", 672 "--no_resume",
673 "--platform=darwin", 673 "--platform=darwin",
674 "--no_auth", 674 "--no_auth",
675 "--bucket", "chromium-gn", 675 "--bucket", "chromium-gn",
676 "-s", "src/buildtools/mac/gn.sha1",
677 ],
678 },
679 {
680 "name": "gn_linux32",
681 "pattern": ".",
682 "action": [ "download_from_google_storage",
683 "--no_resume",
684 "--platform=linux*",
685 "--no_auth",
686 "--bucket", "chromium-gn",
687 "-s", "src/buildtools/linux32/gn.sha1",
688 ],
689 },
690 {
691 "name": "gn_linux64",
692 "pattern": ".",
693 "action": [ "download_from_google_storage",
694 "--no_resume",
695 "--platform=linux*",
696 "--no_auth",
697 "--bucket", "chromium-gn",
698 "-s", "src/buildtools/linux64/gn.sha1",
699 ],
700 },
701 # Pull GN binaries (old location). TODO(brettw) remove this after a transition
702 # period while we move the binaries from tools/gn/bin to buildtools.
703 {
704 "name": "gn_old_win",
705 "pattern": ".",
706 "action": [ "download_from_google_storage",
707 "--no_resume",
708 "--platform=win32",
709 "--no_auth",
710 "--bucket", "chromium-gn",
711 "-s", "src/tools/gn/bin/win/gn.exe.sha1",
712 ],
713 },
714 {
715 "name": "gn_old_mac",
716 "pattern": ".",
717 "action": [ "download_from_google_storage",
718 "--no_resume",
719 "--platform=darwin",
720 "--no_auth",
721 "--bucket", "chromium-gn",
676 "-s", "src/tools/gn/bin/mac/gn.sha1", 722 "-s", "src/tools/gn/bin/mac/gn.sha1",
677 ], 723 ],
678 }, 724 },
679 { 725 {
680 "name": "gn_linux", 726 "name": "gn_old_linux",
681 "pattern": ".", 727 "pattern": ".",
682 "action": [ "download_from_google_storage", 728 "action": [ "download_from_google_storage",
683 "--no_resume", 729 "--no_resume",
684 "--platform=linux*", 730 "--platform=linux*",
685 "--no_auth", 731 "--no_auth",
686 "--bucket", "chromium-gn", 732 "--bucket", "chromium-gn",
687 "-s", "src/tools/gn/bin/linux/gn.sha1", 733 "-s", "src/tools/gn/bin/linux/gn.sha1",
688 ], 734 ],
689 }, 735 },
690 { 736 {
691 "name": "gn_linux32", 737 "name": "gn_old_linux32",
692 "pattern": ".", 738 "pattern": ".",
693 "action": [ "download_from_google_storage", 739 "action": [ "download_from_google_storage",
694 "--no_resume", 740 "--no_resume",
695 "--platform=linux*", 741 "--platform=linux*",
696 "--no_auth", 742 "--no_auth",
697 "--bucket", "chromium-gn", 743 "--bucket", "chromium-gn",
698 "-s", "src/tools/gn/bin/linux/gn32.sha1", 744 "-s", "src/tools/gn/bin/linux/gn32.sha1",
699 ], 745 ],
700 }, 746 },
701 # Pull clang-format binaries using checked-in hashes. 747 # Pull clang-format binaries using checked-in hashes.
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 "src/third_party/apache-win32", 837 "src/third_party/apache-win32",
792 ], 838 ],
793 }, 839 },
794 { 840 {
795 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 841 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
796 "name": "gyp", 842 "name": "gyp",
797 "pattern": ".", 843 "pattern": ".",
798 "action": ["python", "src/build/gyp_chromium"], 844 "action": ["python", "src/build/gyp_chromium"],
799 }, 845 },
800 ] 846 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698