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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 "name": "eu-strip", | 756 "name": "eu-strip", |
757 "pattern": ".", | 757 "pattern": ".", |
758 "action": [ "download_from_google_storage", | 758 "action": [ "download_from_google_storage", |
759 "--no_resume", | 759 "--no_resume", |
760 "--platform=linux*", | 760 "--platform=linux*", |
761 "--no_auth", | 761 "--no_auth", |
762 "--bucket", "chromium-eu-strip", | 762 "--bucket", "chromium-eu-strip", |
763 "-s", "src/build/linux/bin/eu-strip.sha1", | 763 "-s", "src/build/linux/bin/eu-strip.sha1", |
764 ], | 764 ], |
765 }, | 765 }, |
| 766 # Pull libaddressinput strings to work better with translation tools. |
| 767 # This is a no-op on android and ios platforms. |
| 768 { |
| 769 "name": "libaddressinput-strings", |
| 770 "pattern": ".", |
| 771 "action": [ |
| 772 "python", |
| 773 "src/third_party/libaddressinput/chromium/tools/update-strings.py", |
| 774 ], |
| 775 }, |
766 { | 776 { |
767 "name": "drmemory", | 777 "name": "drmemory", |
768 "pattern": ".", | 778 "pattern": ".", |
769 "action": [ "download_from_google_storage", | 779 "action": [ "download_from_google_storage", |
770 "--no_resume", | 780 "--no_resume", |
771 "--platform=win32", | 781 "--platform=win32", |
772 "--no_auth", | 782 "--no_auth", |
773 "--bucket", "chromium-drmemory", | 783 "--bucket", "chromium-drmemory", |
774 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", | 784 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", |
775 ], | 785 ], |
776 }, | 786 }, |
777 { | 787 { |
778 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 788 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
779 "name": "gyp", | 789 "name": "gyp", |
780 "pattern": ".", | 790 "pattern": ".", |
781 "action": ["python", "src/build/gyp_chromium"], | 791 "action": ["python", "src/build/gyp_chromium"], |
782 }, | 792 }, |
783 ] | 793 ] |
OLD | NEW |