| 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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 "name": "eu-strip", | 761 "name": "eu-strip", |
| 762 "pattern": ".", | 762 "pattern": ".", |
| 763 "action": [ "download_from_google_storage", | 763 "action": [ "download_from_google_storage", |
| 764 "--no_resume", | 764 "--no_resume", |
| 765 "--platform=linux*", | 765 "--platform=linux*", |
| 766 "--no_auth", | 766 "--no_auth", |
| 767 "--bucket", "chromium-eu-strip", | 767 "--bucket", "chromium-eu-strip", |
| 768 "-s", "src/build/linux/bin/eu-strip.sha1", | 768 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 769 ], | 769 ], |
| 770 }, | 770 }, |
| 771 # Pull libaddressinput strings to work better with translation tools. |
| 772 { |
| 773 "name": "libaddressinput-strings", |
| 774 "pattern": "src/third_party/libaddressinput", |
| 775 "action": [ |
| 776 "python", |
| 777 "src/third_party/libaddressinput/chromium/tools/update-strings.py", |
| 778 ], |
| 779 }, |
| 771 { | 780 { |
| 772 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 781 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 773 "name": "gyp", | 782 "name": "gyp", |
| 774 "pattern": ".", | 783 "pattern": ".", |
| 775 "action": ["python", "src/build/gyp_chromium"], | 784 "action": ["python", "src/build/gyp_chromium"], |
| 776 }, | 785 }, |
| 777 ] | 786 ] |
| OLD | NEW |