| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 'src/third_party/webdriver/pylib': | 182 'src/third_party/webdriver/pylib': |
| 183 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 183 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
| 184 | 184 |
| 185 'src/third_party/libvpx': | 185 'src/third_party/libvpx': |
| 186 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 186 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
| 187 | 187 |
| 188 'src/third_party/ffmpeg': | 188 'src/third_party/ffmpeg': |
| 189 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '1f2f7df0f40
05fb620342d847bbaa1ec54122c68', | 189 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '1f2f7df0f40
05fb620342d847bbaa1ec54122c68', |
| 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' + '@' + '03a28d8d659
afa07c8b98010356d3d47d573f18c', # commit position 9557 | 192 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '1b25fa26dbb
02cd3e213d150f749693040ecb98d', # commit position 9558 |
| 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' + '@' + '9c53f858cddd4d890
e405e91ff3af0b48dfd90e6', # 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 |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 # migration completes (let's say Sep 1 2014). | 789 # migration completes (let's say Sep 1 2014). |
| 790 'name': 'check_git_config', | 790 'name': 'check_git_config', |
| 791 'pattern': '.', | 791 'pattern': '.', |
| 792 'action': [ | 792 'action': [ |
| 793 'python', | 793 'python', |
| 794 'src/tools/check_git_config.py', | 794 'src/tools/check_git_config.py', |
| 795 '--running-as-hook', | 795 '--running-as-hook', |
| 796 ], | 796 ], |
| 797 }, | 797 }, |
| 798 ] | 798 ] |
| OLD | NEW |