| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 'src/third_party/webdriver/pylib': | 190 'src/third_party/webdriver/pylib': |
| 191 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 191 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
| 192 | 192 |
| 193 'src/third_party/libvpx': | 193 'src/third_party/libvpx': |
| 194 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 194 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
| 195 | 195 |
| 196 'src/third_party/libvpx_new/source/libvpx': | 196 'src/third_party/libvpx_new/source/libvpx': |
| 197 Var('chromium_git') + '/webm/libvpx.git' + '@' + '7d28d12ef34f6cbb6b1e18f3b2
3b71392fd3ddf5', | 197 Var('chromium_git') + '/webm/libvpx.git' + '@' + '7d28d12ef34f6cbb6b1e18f3b2
3b71392fd3ddf5', |
| 198 | 198 |
| 199 'src/third_party/ffmpeg': | 199 'src/third_party/ffmpeg': |
| 200 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'cf1d457c7df
bcc65c26fad16baef881c7b0bab3a', | 200 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '525a71ab8ee
3b61da48138f7e1c406989d2879fc', |
| 201 | 201 |
| 202 'src/third_party/libjingle/source/talk': | 202 'src/third_party/libjingle/source/talk': |
| 203 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'c1f29d891d2
d439060eff868e34935f69d454cca', # commit position 10116 | 203 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'c1f29d891d2
d439060eff868e34935f69d454cca', # commit position 10116 |
| 204 | 204 |
| 205 'src/third_party/usrsctp/usrsctplib': | 205 'src/third_party/usrsctp/usrsctplib': |
| 206 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 | 206 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 |
| 207 | 207 |
| 208 'src/third_party/libsrtp': | 208 'src/third_party/libsrtp': |
| 209 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '502e81a238a864cfc
e774d4de3893810629bf227', # from svn revision 295151 | 209 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '502e81a238a864cfc
e774d4de3893810629bf227', # from svn revision 295151 |
| 210 | 210 |
| (...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 'pattern': '.', | 814 'pattern': '.', |
| 815 'action': [ | 815 'action': [ |
| 816 'python', | 816 'python', |
| 817 'src/tools/check_git_config.py', | 817 'src/tools/check_git_config.py', |
| 818 '--running-as-hook', | 818 '--running-as-hook', |
| 819 ], | 819 ], |
| 820 }, | 820 }, |
| 821 ] | 821 ] |
| 822 | 822 |
| 823 | 823 |
| OLD | NEW |