| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'src/third_party/webgl/src': | 179 'src/third_party/webgl/src': |
| 180 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '8986f8bfa84
547b1a30a9256ebdd665024d68d71', | 180 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '8986f8bfa84
547b1a30a9256ebdd665024d68d71', |
| 181 | 181 |
| 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' + '@' + 'bb04e2faf4f
1419aca19004f67f78375678b70e1', | 189 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '408c4b08fab
5cbaa284847f8c573fe939cada87c', |
| 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' + '@' + '8c44aaca859
7349a70c7e05bace3a846df0a4f38', # commit position 9490 | 192 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '8c44aaca859
7349a70c7e05bace3a846df0a4f38', # commit position 9490 |
| 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 |
| (...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 # migration completes (let's say Sep 1 2014). | 787 # migration completes (let's say Sep 1 2014). |
| 788 'name': 'check_git_config', | 788 'name': 'check_git_config', |
| 789 'pattern': '.', | 789 'pattern': '.', |
| 790 'action': [ | 790 'action': [ |
| 791 'python', | 791 'python', |
| 792 'src/tools/check_git_config.py', | 792 'src/tools/check_git_config.py', |
| 793 '--running-as-hook', | 793 '--running-as-hook', |
| 794 ], | 794 ], |
| 795 }, | 795 }, |
| 796 ] | 796 ] |
| OLD | NEW |