OLD | NEW |
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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 "name": "clang_format_linux", | 742 "name": "clang_format_linux", |
743 "pattern": ".", | 743 "pattern": ".", |
744 "action": [ "download_from_google_storage", | 744 "action": [ "download_from_google_storage", |
745 "--no_resume", | 745 "--no_resume", |
746 "--platform=linux*", | 746 "--platform=linux*", |
747 "--no_auth", | 747 "--no_auth", |
748 "--bucket", "chromium-clang-format", | 748 "--bucket", "chromium-clang-format", |
749 "-s", "src/buildtools/linux64/clang-format.sha1", | 749 "-s", "src/buildtools/linux64/clang-format.sha1", |
750 ], | 750 ], |
751 }, | 751 }, |
752 { | |
753 # Remove clang-format binaries from third_party/clang_format/bin that | |
754 # aren't used anymore. | |
755 # TODO(jochen) remove this and the .gitignore entry after the end of July, | |
756 # 2014. | |
757 "name": "remove_old_clang_format_binaries", | |
758 "pattern": ".", | |
759 "action": ["python", "src/third_party/clang_format/bin/rm_binaries.py"], | |
760 }, | |
761 # Pull binutils for linux, enabled debug fission for faster linking / | 752 # Pull binutils for linux, enabled debug fission for faster linking / |
762 # debugging when used with clang on Ubuntu Precise. | 753 # debugging when used with clang on Ubuntu Precise. |
763 # https://code.google.com/p/chromium/issues/detail?id=352046 | 754 # https://code.google.com/p/chromium/issues/detail?id=352046 |
764 { | 755 { |
765 "name": "binutils", | 756 "name": "binutils", |
766 "pattern": "src/third_party/binutils", | 757 "pattern": "src/third_party/binutils", |
767 "action": [ | 758 "action": [ |
768 "python", | 759 "python", |
769 "src/third_party/binutils/download.py", | 760 "src/third_party/binutils/download.py", |
770 ], | 761 ], |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 "src/third_party/apache-win32", | 808 "src/third_party/apache-win32", |
818 ], | 809 ], |
819 }, | 810 }, |
820 { | 811 { |
821 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 812 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
822 "name": "gyp", | 813 "name": "gyp", |
823 "pattern": ".", | 814 "pattern": ".", |
824 "action": ["python", "src/build/gyp_chromium"], | 815 "action": ["python", "src/build/gyp_chromium"], |
825 }, | 816 }, |
826 ] | 817 ] |
OLD | NEW |