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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 'src/third_party/libvpx': | 208 'src/third_party/libvpx': |
209 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 209 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
210 | 210 |
211 'src/third_party/ffmpeg': | 211 'src/third_party/ffmpeg': |
212 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '4cdb373bda5
977743d2bf2c89ab82e2edf571b90', | 212 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '4cdb373bda5
977743d2bf2c89ab82e2edf571b90', |
213 | 213 |
214 'src/third_party/libjingle/source/talk': | 214 'src/third_party/libjingle/source/talk': |
215 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '18f533d48bd
ade5faf798421edad3753f8466d47', # from svn revision 8221 | 215 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '18f533d48bd
ade5faf798421edad3753f8466d47', # from svn revision 8221 |
216 | 216 |
217 'src/third_party/usrsctp/usrsctplib': | 217 'src/third_party/usrsctp/usrsctplib': |
218 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '190c8cbfcf8fd810aa
09e0fab4ca62a8ce724e14', | 218 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '13718c7b9fd376fde0
92cbd3c5347d15059ac652', # from svn revision 9167 |
219 | 219 |
220 'src/third_party/libsrtp': | 220 'src/third_party/libsrtp': |
221 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', | 221 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', |
222 | 222 |
223 'src/third_party/yasm/source/patched-yasm': | 223 'src/third_party/yasm/source/patched-yasm': |
224 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', | 224 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', |
225 | 225 |
226 'src/third_party/libjpeg_turbo': | 226 'src/third_party/libjpeg_turbo': |
227 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '034e9a9747e
0983bc19808ea70e469bc8342081f', | 227 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '034e9a9747e
0983bc19808ea70e469bc8342081f', |
228 | 228 |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 # corresponding .py files have already been deleted. | 777 # corresponding .py files have already been deleted. |
778 'name': 'remove_stale_pyc_files', | 778 'name': 'remove_stale_pyc_files', |
779 'pattern': 'src/tools/.*\\.py', | 779 'pattern': 'src/tools/.*\\.py', |
780 'action': [ | 780 'action': [ |
781 'python', | 781 'python', |
782 'src/tools/remove_stale_pyc_files.py', | 782 'src/tools/remove_stale_pyc_files.py', |
783 'src/tools', | 783 'src/tools', |
784 ], | 784 ], |
785 }, | 785 }, |
786 ] | 786 ] |
OLD | NEW |