OLD | NEW |
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 'src/third_party/ffmpeg': | 188 'src/third_party/ffmpeg': |
189 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f76066ad9f4
aea07a53890b54d24cc22830b9efd', | 189 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f76066ad9f4
aea07a53890b54d24cc22830b9efd', |
190 | 190 |
191 'src/third_party/libjingle/source/talk': | 191 'src/third_party/libjingle/source/talk': |
192 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'f7c923ddc72
9dc7f002b0e194ab72b661f932c00', # commit position 9564 | 192 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'f7c923ddc72
9dc7f002b0e194ab72b661f932c00', # commit position 9564 |
193 | 193 |
194 'src/third_party/usrsctp/usrsctplib': | 194 'src/third_party/usrsctp/usrsctplib': |
195 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 | 195 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 |
196 | 196 |
197 'src/third_party/libsrtp': | 197 'src/third_party/libsrtp': |
198 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '9c53f858cddd4d890
e405e91ff3af0b48dfd90e6', # from svn revision 295151 | 198 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '502e81a238a864cfc
e774d4de3893810629bf227', # from svn revision 295151 |
199 | 199 |
200 'src/third_party/yasm/source/patched-yasm': | 200 'src/third_party/yasm/source/patched-yasm': |
201 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', | 201 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', |
202 | 202 |
203 'src/third_party/libjpeg_turbo': | 203 'src/third_party/libjpeg_turbo': |
204 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'f4631b6ee8b
1dbb05e51ae335a7886f9ac598ab6', | 204 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'f4631b6ee8b
1dbb05e51ae335a7886f9ac598ab6', |
205 | 205 |
206 'src/third_party/flac': | 206 'src/third_party/flac': |
207 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'c291ce676d2c855f7b27
39f00f5c7f7e813813dc', | 207 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'c291ce676d2c855f7b27
39f00f5c7f7e813813dc', |
208 | 208 |
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
792 # migration completes (let's say Sep 1 2014). | 792 # migration completes (let's say Sep 1 2014). |
793 'name': 'check_git_config', | 793 'name': 'check_git_config', |
794 'pattern': '.', | 794 'pattern': '.', |
795 'action': [ | 795 'action': [ |
796 'python', | 796 'python', |
797 'src/tools/check_git_config.py', | 797 'src/tools/check_git_config.py', |
798 '--running-as-hook', | 798 '--running-as-hook', |
799 ], | 799 ], |
800 }, | 800 }, |
801 ] | 801 ] |
OLD | NEW |