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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 | 232 |
233 'src/third_party/scons-2.0.1': | 233 'src/third_party/scons-2.0.1': |
234 Var('chromium_git') + '/native_client/src/third_party/scons-2.0.1.git' + '@'
+ '1c1550e17fc26355d08627fbdec13d8291227067', | 234 Var('chromium_git') + '/native_client/src/third_party/scons-2.0.1.git' + '@'
+ '1c1550e17fc26355d08627fbdec13d8291227067', |
235 | 235 |
236 'src/third_party/webrtc': | 236 'src/third_party/webrtc': |
237 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '9c4441b16
2635cee7d0a27abd95d2ea27177e4d0', # commit position 8924 | 237 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '9c4441b16
2635cee7d0a27abd95d2ea27177e4d0', # commit position 8924 |
238 | 238 |
239 'src/third_party/openmax_dl': | 239 'src/third_party/openmax_dl': |
240 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 240 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
241 | 241 |
242 'src/third_party/jsoncpp/source/include': | 242 'src/third_party/jsoncpp/source': |
243 Var('chromium_git') + '/external/jsoncpp/jsoncpp/include.git' + '@' + 'b0dd4
8e02b6e6248328db78a65b5c601f150c349', | 243 Var('chromium_git') + '/external/jsoncpp/jsoncpp.git' + '@' + 'ab1e40f3bce06
1ea6f9bdc60351d6cde2a4f872b', # from svn 248 |
244 | |
245 'src/third_party/jsoncpp/source/src/lib_json': | |
246 Var('chromium_git') + '/external/jsoncpp/jsoncpp/src/lib_json.git' + '@' + '
a8caa51ba2f80971a45880425bf2ae864a786784', | |
247 | 244 |
248 'src/third_party/libyuv': | 245 'src/third_party/libyuv': |
249 Var('chromium_git') + '/external/libyuv.git' + '@' + 'd204db647e591ccf0e2589
236ecea90330d65a66', # from svn revision 1171 | 246 Var('chromium_git') + '/external/libyuv.git' + '@' + 'd204db647e591ccf0e2589
236ecea90330d65a66', # from svn revision 1171 |
250 | 247 |
251 'src/third_party/smhasher/src': | 248 'src/third_party/smhasher/src': |
252 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 249 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
253 | 250 |
254 'src/third_party/libaddressinput/src': | 251 'src/third_party/libaddressinput/src': |
255 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', | 252 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', |
256 | 253 |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 # corresponding .py files have already been deleted. | 786 # corresponding .py files have already been deleted. |
790 'name': 'remove_stale_pyc_files', | 787 'name': 'remove_stale_pyc_files', |
791 'pattern': 'src/tools/.*\\.py', | 788 'pattern': 'src/tools/.*\\.py', |
792 'action': [ | 789 'action': [ |
793 'python', | 790 'python', |
794 'src/tools/remove_stale_pyc_files.py', | 791 'src/tools/remove_stale_pyc_files.py', |
795 'src/tools', | 792 'src/tools', |
796 ], | 793 ], |
797 }, | 794 }, |
798 ] | 795 ] |
OLD | NEW |