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' + '@' + 'f76066ad9f4
aea07a53890b54d24cc22830b9efd', | 189 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '541722e6aca
5cf72100d513868dc89bd255e434f', |
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' + '@' + 'ac50f99103c
a6cad735e4dbee5931da83b5cb46d', # commit position 9582 | 192 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'ac50f99103c
a6cad735e4dbee5931da83b5cb46d', # commit position 9582 |
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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
792 # migration completes (let's say Sep 1 2014). | 792 # migration completes (let's say Sep 1 2014). |
793 'name': 'check_git_config', | 793 'name': 'check_git_config', |
794 'pattern': '.', | 794 'pattern': '.', |
795 'action': [ | 795 'action': [ |
796 'python', | 796 'python', |
797 'src/tools/check_git_config.py', | 797 'src/tools/check_git_config.py', |
798 '--running-as-hook', | 798 '--running-as-hook', |
799 ], | 799 ], |
800 }, | 800 }, |
801 ] | 801 ] |
OLD | NEW |