| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 'src/third_party/bidichecker': | 180 'src/third_party/bidichecker': |
| 181 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 181 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
| 182 | 182 |
| 183 'src/third_party/webgl/src': | 183 'src/third_party/webgl/src': |
| 184 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '397fdf92459
12ce37a01611b7a0ad02cd80de89f', | 184 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '397fdf92459
12ce37a01611b7a0ad02cd80de89f', |
| 185 | 185 |
| 186 'src/third_party/webdriver/pylib': | 186 'src/third_party/webdriver/pylib': |
| 187 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 187 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
| 188 | 188 |
| 189 'src/third_party/libvpx_new/source/libvpx': | 189 'src/third_party/libvpx_new/source/libvpx': |
| 190 Var('chromium_git') + '/webm/libvpx.git' + '@' + '7d28d12ef34f6cbb6b1e18f3b2
3b71392fd3ddf5', | 190 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'ce3f4ade670cf02e05998f4ca5
0e08736802f5e7', |
| 191 | 191 |
| 192 'src/third_party/ffmpeg': | 192 'src/third_party/ffmpeg': |
| 193 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '525a71ab8ee
3b61da48138f7e1c406989d2879fc', | 193 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '525a71ab8ee
3b61da48138f7e1c406989d2879fc', |
| 194 | 194 |
| 195 'src/third_party/libjingle/source/talk': | 195 'src/third_party/libjingle/source/talk': |
| 196 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'cb124eec069
bd28f486bde5f95b5603e2b823219', # commit position 10196 | 196 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'cb124eec069
bd28f486bde5f95b5603e2b823219', # commit position 10196 |
| 197 | 197 |
| 198 'src/third_party/usrsctp/usrsctplib': | 198 'src/third_party/usrsctp/usrsctplib': |
| 199 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 | 199 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 |
| 200 | 200 |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 'pattern': '.', | 807 'pattern': '.', |
| 808 'action': [ | 808 'action': [ |
| 809 'python', | 809 'python', |
| 810 'src/tools/check_git_config.py', | 810 'src/tools/check_git_config.py', |
| 811 '--running-as-hook', | 811 '--running-as-hook', |
| 812 ], | 812 ], |
| 813 }, | 813 }, |
| 814 ] | 814 ] |
| 815 | 815 |
| 816 | 816 |
| OLD | NEW |