| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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' + '@' + 'f814f6db6
5486838a7d00ba126dc0b305a86e00f', | 237 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + 'f814f6db6
5486838a7d00ba126dc0b305a86e00f', |
| 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': | 242 'src/third_party/jsoncpp/source': |
| 243 Var('chromium_git') + '/external/jsoncpp/jsoncpp.git' + '@' + 'ab1e40f3bce06
1ea6f9bdc60351d6cde2a4f872b', # from svn 248 | 243 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 244 | 244 |
| 245 'src/third_party/libyuv': | 245 'src/third_party/libyuv': |
| 246 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 |
| 247 | 247 |
| 248 'src/third_party/smhasher/src': | 248 'src/third_party/smhasher/src': |
| 249 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 249 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
| 250 | 250 |
| 251 'src/third_party/libaddressinput/src': | 251 'src/third_party/libaddressinput/src': |
| 252 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', | 252 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', |
| 253 | 253 |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 # corresponding .py files have already been deleted. | 786 # corresponding .py files have already been deleted. |
| 787 'name': 'remove_stale_pyc_files', | 787 'name': 'remove_stale_pyc_files', |
| 788 'pattern': 'src/tools/.*\\.py', | 788 'pattern': 'src/tools/.*\\.py', |
| 789 'action': [ | 789 'action': [ |
| 790 'python', | 790 'python', |
| 791 'src/tools/remove_stale_pyc_files.py', | 791 'src/tools/remove_stale_pyc_files.py', |
| 792 'src/tools', | 792 'src/tools', |
| 793 ], | 793 ], |
| 794 }, | 794 }, |
| 795 ] | 795 ] |
| OLD | NEW |