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' + '@' + '397fdf92459
12ce37a01611b7a0ad02cd80de89f', | 183 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '397fdf92459
12ce37a01611b7a0ad02cd80de89f', |
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/libvpx_new/source/libvpx': | 191 'src/third_party/libvpx_new/source/libvpx': |
192 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'c5f11912ae328a912ef087fdcd
074ff07e96d8f9', | 192 Var('chromium_git') + '/webm/libvpx.git' + '@' + '90a109f0eef8bfaaa4869cf7b2
873dac5076b582', |
193 | 193 |
194 'src/third_party/ffmpeg': | 194 'src/third_party/ffmpeg': |
195 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '382b031ebab
06b25df0708dd44aafad235657d2c', | 195 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '382b031ebab
06b25df0708dd44aafad235657d2c', |
196 | 196 |
197 'src/third_party/libjingle/source/talk': | 197 'src/third_party/libjingle/source/talk': |
198 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '300c7492bf1
d44614047e24a453a1f13a9c9719d', # commit position 10011 | 198 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '300c7492bf1
d44614047e24a453a1f13a9c9719d', # commit position 10011 |
199 | 199 |
200 'src/third_party/usrsctp/usrsctplib': | 200 'src/third_party/usrsctp/usrsctplib': |
201 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 | 201 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 |
202 | 202 |
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 # migration completes (let's say Sep 1 2014). | 806 # migration completes (let's say Sep 1 2014). |
807 'name': 'check_git_config', | 807 'name': 'check_git_config', |
808 'pattern': '.', | 808 'pattern': '.', |
809 'action': [ | 809 'action': [ |
810 'python', | 810 'python', |
811 'src/tools/check_git_config.py', | 811 'src/tools/check_git_config.py', |
812 '--running-as-hook', | 812 '--running-as-hook', |
813 ], | 813 ], |
814 }, | 814 }, |
815 ] | 815 ] |
OLD | NEW |