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 # These are all at libphonenumber r728. | 235 'src/third_party/libphonenumber/src': |
236 'src/third_party/libphonenumber/src/phonenumbers': | 236 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a9bd368debe743 55364965c24bcc5a6bfb1dc546', |
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', | |
Nico
2016/02/11 17:59:54
I'm playing around with this a bit, and after this
Mathieu
2016/02/11 18:16:57
When you are done gclient sync with my change, it
| |
242 | 237 |
243 'src/third_party/webpagereplay': | 238 'src/third_party/webpagereplay': |
244 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + ' @' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', | 239 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + ' @' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', |
245 | 240 |
246 'src/third_party/pywebsocket/src': | 241 'src/third_party/pywebsocket/src': |
247 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 242 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
248 | 243 |
249 'src/third_party/opus/src': | 244 'src/third_party/opus/src': |
250 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827 f0b2152ce3811046201e', | 245 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827 f0b2152ce3811046201e', |
251 | 246 |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
829 'src/tools', | 824 'src/tools', |
830 ], | 825 ], |
831 }, | 826 }, |
832 { | 827 { |
833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 828 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
834 'name': 'gyp', | 829 'name': 'gyp', |
835 'pattern': '.', | 830 'pattern': '.', |
836 'action': ['python', 'src/build/gyp_chromium'], | 831 'action': ['python', 'src/build/gyp_chromium'], |
837 }, | 832 }, |
838 ] | 833 ] |
OLD | NEW |