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' + '@' + '1f2f7df0f40
05fb620342d847bbaa1ec54122c68', | 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' + '@' + '9c53f858cddd4d890
e405e91ff3af0b48dfd90e6', # from svn revision 295151 |
199 | 199 |
(...skipping 589 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 |