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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 'src/third_party/openmax_dl': | 252 'src/third_party/openmax_dl': |
253 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 253 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
254 | 254 |
255 'src/third_party/jsoncpp/source/include': | 255 'src/third_party/jsoncpp/source/include': |
256 Var('chromium_git') + '/external/jsoncpp/jsoncpp/include.git' + '@' + 'b0dd4
8e02b6e6248328db78a65b5c601f150c349', | 256 Var('chromium_git') + '/external/jsoncpp/jsoncpp/include.git' + '@' + 'b0dd4
8e02b6e6248328db78a65b5c601f150c349', |
257 | 257 |
258 'src/third_party/jsoncpp/source/src/lib_json': | 258 'src/third_party/jsoncpp/source/src/lib_json': |
259 Var('chromium_git') + '/external/jsoncpp/jsoncpp/src/lib_json.git' + '@' + '
a8caa51ba2f80971a45880425bf2ae864a786784', | 259 Var('chromium_git') + '/external/jsoncpp/jsoncpp/src/lib_json.git' + '@' + '
a8caa51ba2f80971a45880425bf2ae864a786784', |
260 | 260 |
261 'src/third_party/libyuv': | 261 'src/third_party/libyuv': |
262 Var('chromium_git') + '/external/libyuv.git' + '@' + '455c66b4375d72984b7924
9616d0a708ad568894', | 262 Var('chromium_git') + '/external/libyuv.git' + '@' + '9107460c7f76a10cc4122d
91e62b0580eacd376e', |
263 | 263 |
264 'src/third_party/smhasher/src': | 264 'src/third_party/smhasher/src': |
265 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 265 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
266 | 266 |
267 'src/third_party/libaddressinput/src': | 267 'src/third_party/libaddressinput/src': |
268 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '945d96387a716
d0d82b195fa69a5e9a701249517', # from svn revision 334 | 268 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '945d96387a716
d0d82b195fa69a5e9a701249517', # from svn revision 334 |
269 | 269 |
270 'src/third_party/libphonenumber/src/phonenumbers': | 270 'src/third_party/libphonenumber/src/phonenumbers': |
271 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '8d8b5b3b2035197795d27573d4cf566b5d9ad689', | 271 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '8d8b5b3b2035197795d27573d4cf566b5d9ad689', |
272 'src/third_party/libphonenumber/src/test': | 272 'src/third_party/libphonenumber/src/test': |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 # corresponding .py files have already been deleted. | 799 # corresponding .py files have already been deleted. |
800 'name': 'remove_stale_pyc_files', | 800 'name': 'remove_stale_pyc_files', |
801 'pattern': 'src/tools/.*\\.py', | 801 'pattern': 'src/tools/.*\\.py', |
802 'action': [ | 802 'action': [ |
803 'python', | 803 'python', |
804 'src/tools/remove_stale_pyc_files.py', | 804 'src/tools/remove_stale_pyc_files.py', |
805 'src/tools', | 805 'src/tools', |
806 ], | 806 ], |
807 }, | 807 }, |
808 ] | 808 ] |
OLD | NEW |