| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 225 |
| 226 'src/third_party/libyuv': | 226 'src/third_party/libyuv': |
| 227 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '903c91cc2e3c831748d6f616
8b7a8bb98f6ab9ec', # from version 1571 | 227 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '903c91cc2e3c831748d6f616
8b7a8bb98f6ab9ec', # from version 1571 |
| 228 | 228 |
| 229 'src/third_party/smhasher/src': | 229 'src/third_party/smhasher/src': |
| 230 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 230 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
| 231 | 231 |
| 232 'src/third_party/libaddressinput/src': | 232 'src/third_party/libaddressinput/src': |
| 233 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '5eeeb797e79fa
01503fcdcbebdc50036fac023ef', | 233 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '5eeeb797e79fa
01503fcdcbebdc50036fac023ef', |
| 234 | 234 |
| 235 'src/third_party/libphonenumber/src': | 235 # These are all at libphonenumber r728. |
| 236 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a9bd368debe743
55364965c24bcc5a6bfb1dc546', | 236 'src/third_party/libphonenumber/src/phonenumbers': |
| 237 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
| 238 'src/third_party/libphonenumber/src/test': |
| 239 Var('chromium_git') + '/external/libphonenumber/cpp/test.git' + '@' + 'f351a
7e007f9c9995494499120bbc361ca808a16', |
| 240 'src/third_party/libphonenumber/src/resources': |
| 241 Var('chromium_git') + '/external/libphonenumber/resources.git' + '@' + 'b6df
dc7952571ff7ee72643cd88c988cbe966396', |
| 237 | 242 |
| 238 'src/third_party/webpagereplay': | 243 'src/third_party/webpagereplay': |
| 239 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', | 244 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', |
| 240 | 245 |
| 241 'src/third_party/pywebsocket/src': | 246 'src/third_party/pywebsocket/src': |
| 242 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 247 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 243 | 248 |
| 244 'src/third_party/opus/src': | 249 'src/third_party/opus/src': |
| 245 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827
f0b2152ce3811046201e', | 250 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827
f0b2152ce3811046201e', |
| 246 | 251 |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 824 'src/tools', | 829 'src/tools', |
| 825 ], | 830 ], |
| 826 }, | 831 }, |
| 827 { | 832 { |
| 828 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 829 'name': 'gyp', | 834 'name': 'gyp', |
| 830 'pattern': '.', | 835 'pattern': '.', |
| 831 'action': ['python', 'src/build/gyp_chromium'], | 836 'action': ['python', 'src/build/gyp_chromium'], |
| 832 }, | 837 }, |
| 833 ] | 838 ] |
| OLD | NEW |