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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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' + '@' + 'fed7b07985d
e8d293761040aa1edcdfd3c2579e4', | 220 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'fed7b07985d
e8d293761040aa1edcdfd3c2579e4', |
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' + '@' + '98f562bcb33
36838bd4d2fe7ae3a9dc55a5fc9a7', # from svn revision 7718 | 223 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '1b69cdea2ac
2f762cc45545e989a1c500552f901', # from svn revision 7721 |
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 |
231 'src/third_party/yasm/source/patched-yasm': | 231 'src/third_party/yasm/source/patched-yasm': |
232 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'c960eb1
1ccda80b10ed50be39df4f0663b371d1d', | 232 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'c960eb1
1ccda80b10ed50be39df4f0663b371d1d', |
233 | 233 |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 # corresponding .py files have already been deleted. | 779 # corresponding .py files have already been deleted. |
780 'name': 'remove_stale_pyc_files', | 780 'name': 'remove_stale_pyc_files', |
781 'pattern': 'src/tools/.*\\.py', | 781 'pattern': 'src/tools/.*\\.py', |
782 'action': [ | 782 'action': [ |
783 'python', | 783 'python', |
784 'src/tools/remove_stale_pyc_files.py', | 784 'src/tools/remove_stale_pyc_files.py', |
785 'src/tools', | 785 'src/tools', |
786 ], | 786 ], |
787 }, | 787 }, |
788 ] | 788 ] |
OLD | NEW |