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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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' + '@' + 'eca71c39e22
8bcf4559ef7cfc249376d7f0dee61', |
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' + '@' + 'a11b3c55b730332ac3
3e9a81d053aca3bf813b93', |
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 |
234 'src/third_party/yasm/source/patched-yasm': | 234 'src/third_party/yasm/source/patched-yasm': |
235 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'c960eb1
1ccda80b10ed50be39df4f0663b371d1d', | 235 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'c960eb1
1ccda80b10ed50be39df4f0663b371d1d', |
236 | 236 |
237 'src/third_party/libjpeg_turbo': | 237 'src/third_party/libjpeg_turbo': |
238 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '034e9a9747e
0983bc19808ea70e469bc8342081f', | 238 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '034e9a9747e
0983bc19808ea70e469bc8342081f', |
239 | 239 |
(...skipping 559 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 |