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/webgl/src': | 182 'src/third_party/webgl/src': |
183 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'a62453dbe97
5574d6b0550d3ef87a7e279ae86a1', | 183 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'a62453dbe97
5574d6b0550d3ef87a7e279ae86a1', |
184 | 184 |
185 'src/third_party/webdriver/pylib': | 185 'src/third_party/webdriver/pylib': |
186 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 186 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
187 | 187 |
188 'src/third_party/libvpx': | 188 'src/third_party/libvpx': |
189 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 189 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
190 | 190 |
191 'src/third_party/ffmpeg': | 191 'src/third_party/ffmpeg': |
192 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '67cde45fbfa
5145bd7ebfe0fb811ae7a80902d43', | 192 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '382b031ebab
06b25df0708dd44aafad235657d2c', |
193 | 193 |
194 'src/third_party/libjingle/source/talk': | 194 'src/third_party/libjingle/source/talk': |
195 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '15e5120c8fa
279eaaf113a638288a002172b6abb', # commit position 9991 | 195 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '15e5120c8fa
279eaaf113a638288a002172b6abb', # commit position 9991 |
196 | 196 |
197 'src/third_party/usrsctp/usrsctplib': | 197 'src/third_party/usrsctp/usrsctplib': |
198 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 | 198 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 |
199 | 199 |
200 'src/third_party/libsrtp': | 200 'src/third_party/libsrtp': |
201 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '502e81a238a864cfc
e774d4de3893810629bf227', # from svn revision 295151 | 201 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '502e81a238a864cfc
e774d4de3893810629bf227', # from svn revision 295151 |
202 | 202 |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 # migration completes (let's say Sep 1 2014). | 803 # migration completes (let's say Sep 1 2014). |
804 'name': 'check_git_config', | 804 'name': 'check_git_config', |
805 'pattern': '.', | 805 'pattern': '.', |
806 'action': [ | 806 'action': [ |
807 'python', | 807 'python', |
808 'src/tools/check_git_config.py', | 808 'src/tools/check_git_config.py', |
809 '--running-as-hook', | 809 '--running-as-hook', |
810 ], | 810 ], |
811 }, | 811 }, |
812 ] | 812 ] |
OLD | NEW |