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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'src/third_party/swig/Lib': | 213 'src/third_party/swig/Lib': |
214 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', | 214 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', |
215 | 215 |
216 'src/third_party/webdriver/pylib': | 216 'src/third_party/webdriver/pylib': |
217 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 217 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
218 | 218 |
219 'src/third_party/libvpx': | 219 'src/third_party/libvpx': |
220 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 220 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
221 | 221 |
222 'src/third_party/ffmpeg': | 222 'src/third_party/ffmpeg': |
223 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'eca71c39e22
8bcf4559ef7cfc249376d7f0dee61', | 223 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '4bc3dc1af71
c98bb257fba5e442303f68b4ff8fc', |
224 | 224 |
225 'src/third_party/libjingle/source/talk': | 225 'src/third_party/libjingle/source/talk': |
226 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '1f6d92bb25f
108ee5ec418811d95ca757bf228f9', | 226 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '1f6d92bb25f
108ee5ec418811d95ca757bf228f9', |
227 | 227 |
228 'src/third_party/usrsctp/usrsctplib': | 228 'src/third_party/usrsctp/usrsctplib': |
229 Var('chromium_git') + '/external/usrsctplib.git' + '@' + 'dfd687bb8ef6224a1e
3c38a7de9e79e854b142ad', | 229 Var('chromium_git') + '/external/usrsctplib.git' + '@' + 'dfd687bb8ef6224a1e
3c38a7de9e79e854b142ad', |
230 | 230 |
231 'src/third_party/libsrtp': | 231 'src/third_party/libsrtp': |
232 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '98284c8600c73812f
f4716a6ea157d1e11d417dc', | 232 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '98284c8600c73812f
f4716a6ea157d1e11d417dc', |
233 | 233 |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 # corresponding .py files have already been deleted. | 799 # corresponding .py files have already been deleted. |
800 'name': 'remove_stale_pyc_files', | 800 'name': 'remove_stale_pyc_files', |
801 'pattern': 'src/tools/.*\\.py', | 801 'pattern': 'src/tools/.*\\.py', |
802 'action': [ | 802 'action': [ |
803 'python', | 803 'python', |
804 'src/tools/remove_stale_pyc_files.py', | 804 'src/tools/remove_stale_pyc_files.py', |
805 'src/tools', | 805 'src/tools', |
806 ], | 806 ], |
807 }, | 807 }, |
808 ] | 808 ] |
OLD | NEW |