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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'src/third_party/swig/Lib': | 200 'src/third_party/swig/Lib': |
201 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', | 201 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', |
202 | 202 |
203 'src/third_party/webdriver/pylib': | 203 'src/third_party/webdriver/pylib': |
204 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 204 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
205 | 205 |
206 'src/third_party/libvpx': | 206 'src/third_party/libvpx': |
207 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 207 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
208 | 208 |
209 'src/third_party/ffmpeg': | 209 'src/third_party/ffmpeg': |
210 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'd4b1674dcd2
f742403179a3ef8e6dd8d7aaecf1a', | 210 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f5698b4f3e3
e8eacad18d77cf69882fe14015de5', |
211 | 211 |
212 'src/third_party/libjingle/source/talk': | 212 'src/third_party/libjingle/source/talk': |
213 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '0366d0b6d9d
ddb3d775d7ed8919c56a729cfe82f', | 213 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '0366d0b6d9d
ddb3d775d7ed8919c56a729cfe82f', |
214 | 214 |
215 'src/third_party/usrsctp/usrsctplib': | 215 'src/third_party/usrsctp/usrsctplib': |
216 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '13718c7b9fd376fde0
92cbd3c5347d15059ac652', # from svn revision 9167 | 216 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '13718c7b9fd376fde0
92cbd3c5347d15059ac652', # from svn revision 9167 |
217 | 217 |
218 'src/third_party/libsrtp': | 218 'src/third_party/libsrtp': |
219 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', | 219 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '6446144c7f083552f
21cc4e6768e891bcb767574', |
220 | 220 |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 # corresponding .py files have already been deleted. | 778 # corresponding .py files have already been deleted. |
779 'name': 'remove_stale_pyc_files', | 779 'name': 'remove_stale_pyc_files', |
780 'pattern': 'src/tools/.*\\.py', | 780 'pattern': 'src/tools/.*\\.py', |
781 'action': [ | 781 'action': [ |
782 'python', | 782 'python', |
783 'src/tools/remove_stale_pyc_files.py', | 783 'src/tools/remove_stale_pyc_files.py', |
784 'src/tools', | 784 'src/tools', |
785 ], | 785 ], |
786 }, | 786 }, |
787 ] | 787 ] |
OLD | NEW |