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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 'src/third_party/swig/Lib': | 210 'src/third_party/swig/Lib': |
211 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', | 211 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', |
212 | 212 |
213 'src/third_party/webdriver/pylib': | 213 'src/third_party/webdriver/pylib': |
214 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 214 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
215 | 215 |
216 'src/third_party/libvpx': | 216 'src/third_party/libvpx': |
217 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 217 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
218 | 218 |
219 'src/third_party/ffmpeg': | 219 'src/third_party/ffmpeg': |
220 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '20220831dd7
b589b9ab9f2735fee25b1f454fc0f', | 220 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '7b98b0fc40e
c9bdc379b9d8353bf9b669409757b', |
221 | 221 |
222 'src/third_party/libjingle/source/talk': | 222 'src/third_party/libjingle/source/talk': |
223 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'e2d3246b5b8
7cce2612614d84119c50963b70307', # from svn revision 7860 | 223 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'e2d3246b5b8
7cce2612614d84119c50963b70307', # from svn revision 7860 |
224 | 224 |
225 'src/third_party/usrsctp/usrsctplib': | 225 'src/third_party/usrsctp/usrsctplib': |
226 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '190c8cbfcf8fd810aa
09e0fab4ca62a8ce724e14', | 226 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '190c8cbfcf8fd810aa
09e0fab4ca62a8ce724e14', |
227 | 227 |
228 'src/third_party/libsrtp': | 228 'src/third_party/libsrtp': |
229 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', | 229 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', |
230 | 230 |
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 # corresponding .py files have already been deleted. | 782 # corresponding .py files have already been deleted. |
783 'name': 'remove_stale_pyc_files', | 783 'name': 'remove_stale_pyc_files', |
784 'pattern': 'src/tools/.*\\.py', | 784 'pattern': 'src/tools/.*\\.py', |
785 'action': [ | 785 'action': [ |
786 'python', | 786 'python', |
787 'src/tools/remove_stale_pyc_files.py', | 787 'src/tools/remove_stale_pyc_files.py', |
788 'src/tools', | 788 'src/tools', |
789 ], | 789 ], |
790 }, | 790 }, |
791 ] | 791 ] |
OLD | NEW |