| 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 'src/third_party/flac': | 237 'src/third_party/flac': |
| 238 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '0635a091379d9677f1dd
de5f2eec85d0f096f219', | 238 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '0635a091379d9677f1dd
de5f2eec85d0f096f219', |
| 239 | 239 |
| 240 'src/third_party/pyftpdlib/src': | 240 'src/third_party/pyftpdlib/src': |
| 241 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d
059f581f05ae8d89d7e45', | 241 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d
059f581f05ae8d89d7e45', |
| 242 | 242 |
| 243 'src/third_party/scons-2.0.1': | 243 'src/third_party/scons-2.0.1': |
| 244 Var('chromium_git') + '/native_client/src/third_party/scons-2.0.1.git' + '@'
+ '1c1550e17fc26355d08627fbdec13d8291227067', | 244 Var('chromium_git') + '/native_client/src/third_party/scons-2.0.1.git' + '@'
+ '1c1550e17fc26355d08627fbdec13d8291227067', |
| 245 | 245 |
| 246 'src/third_party/webrtc': | 246 'src/third_party/webrtc': |
| 247 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + 'b831a9e3d
5f9f0563d249b726cffa8a070e58aee', # from svn revision 7638 | 247 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '8645a5afa
00d4ccb32f7630a91d7bb039147b632', # from svn revision 7656 |
| 248 | 248 |
| 249 'src/third_party/openmax_dl': | 249 'src/third_party/openmax_dl': |
| 250 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 250 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
| 251 | 251 |
| 252 'src/third_party/jsoncpp/source/include': | 252 'src/third_party/jsoncpp/source/include': |
| 253 Var('chromium_git') + '/external/jsoncpp/jsoncpp/include.git' + '@' + 'b0dd4
8e02b6e6248328db78a65b5c601f150c349', | 253 Var('chromium_git') + '/external/jsoncpp/jsoncpp/include.git' + '@' + 'b0dd4
8e02b6e6248328db78a65b5c601f150c349', |
| 254 | 254 |
| 255 'src/third_party/jsoncpp/source/src/lib_json': | 255 'src/third_party/jsoncpp/source/src/lib_json': |
| 256 Var('chromium_git') + '/external/jsoncpp/jsoncpp/src/lib_json.git' + '@' + '
a8caa51ba2f80971a45880425bf2ae864a786784', | 256 Var('chromium_git') + '/external/jsoncpp/jsoncpp/src/lib_json.git' + '@' + '
a8caa51ba2f80971a45880425bf2ae864a786784', |
| 257 | 257 |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 # corresponding .py files have already been deleted. | 774 # corresponding .py files have already been deleted. |
| 775 'name': 'remove_stale_pyc_files', | 775 'name': 'remove_stale_pyc_files', |
| 776 'pattern': 'src/tools/.*\\.py', | 776 'pattern': 'src/tools/.*\\.py', |
| 777 'action': [ | 777 'action': [ |
| 778 'python', | 778 'python', |
| 779 'src/tools/remove_stale_pyc_files.py', | 779 'src/tools/remove_stale_pyc_files.py', |
| 780 'src/tools', | 780 'src/tools', |
| 781 ], | 781 ], |
| 782 }, | 782 }, |
| 783 ] | 783 ] |
| OLD | NEW |