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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 'src/third_party/swig/Lib': | 199 'src/third_party/swig/Lib': |
200 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', | 200 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', |
201 | 201 |
202 'src/third_party/webdriver/pylib': | 202 'src/third_party/webdriver/pylib': |
203 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 203 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
204 | 204 |
205 'src/third_party/libvpx': | 205 'src/third_party/libvpx': |
206 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 206 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
207 | 207 |
208 'src/third_party/ffmpeg': | 208 'src/third_party/ffmpeg': |
209 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f776b274380
1160f7bf4377294b9a227f648fb21', | 209 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'b3dc5aa4457
5049edf6b24e34578487dfaade6a4', |
210 | 210 |
211 'src/third_party/libjingle/source/talk': | 211 'src/third_party/libjingle/source/talk': |
212 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '4d55b536955
10061f5fd449d6399c75436e4c39e', # commit position 8869 | 212 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '4d55b536955
10061f5fd449d6399c75436e4c39e', # commit position 8869 |
213 | 213 |
214 'src/third_party/usrsctp/usrsctplib': | 214 'src/third_party/usrsctp/usrsctplib': |
215 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '13718c7b9fd376fde0
92cbd3c5347d15059ac652', # from svn revision 9167 | 215 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '13718c7b9fd376fde0
92cbd3c5347d15059ac652', # from svn revision 9167 |
216 | 216 |
217 'src/third_party/libsrtp': | 217 'src/third_party/libsrtp': |
218 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', | 218 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', |
219 | 219 |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 # corresponding .py files have already been deleted. | 790 # corresponding .py files have already been deleted. |
791 'name': 'remove_stale_pyc_files', | 791 'name': 'remove_stale_pyc_files', |
792 'pattern': 'src/tools/.*\\.py', | 792 'pattern': 'src/tools/.*\\.py', |
793 'action': [ | 793 'action': [ |
794 'python', | 794 'python', |
795 'src/tools/remove_stale_pyc_files.py', | 795 'src/tools/remove_stale_pyc_files.py', |
796 'src/tools', | 796 'src/tools', |
797 ], | 797 ], |
798 }, | 798 }, |
799 ] | 799 ] |
OLD | NEW |