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 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', | 233 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
234 'src/third_party/libphonenumber/src/test': | 234 'src/third_party/libphonenumber/src/test': |
235 Var('chromium_git') + '/external/libphonenumber/cpp/test.git' + '@' + 'f351a
7e007f9c9995494499120bbc361ca808a16', | 235 Var('chromium_git') + '/external/libphonenumber/cpp/test.git' + '@' + 'f351a
7e007f9c9995494499120bbc361ca808a16', |
236 'src/third_party/libphonenumber/src/resources': | 236 'src/third_party/libphonenumber/src/resources': |
237 Var('chromium_git') + '/external/libphonenumber/resources.git' + '@' + 'b6df
dc7952571ff7ee72643cd88c988cbe966396', | 237 Var('chromium_git') + '/external/libphonenumber/resources.git' + '@' + 'b6df
dc7952571ff7ee72643cd88c988cbe966396', |
238 | 238 |
239 'src/third_party/webpagereplay': | 239 'src/third_party/webpagereplay': |
240 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', | 240 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', |
241 | 241 |
242 'src/third_party/pywebsocket/src': | 242 'src/third_party/pywebsocket/src': |
243 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'09d842794c14ca064f8a4223b313ac2c84bd33c8', | 243 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
244 | 244 |
245 'src/third_party/opus/src': | 245 'src/third_party/opus/src': |
246 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 246 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
247 | 247 |
248 'src/media/cdm/api': | 248 'src/media/cdm/api': |
249 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'a4773c3cec827c3a880e8a2c22
e43a287ced0d20', | 249 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'a4773c3cec827c3a880e8a2c22
e43a287ced0d20', |
250 | 250 |
251 'src/third_party/mesa/src': | 251 'src/third_party/mesa/src': |
252 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', | 252 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', |
253 | 253 |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 }, | 811 }, |
812 { | 812 { |
813 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 813 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
814 'name': 'gyp', | 814 'name': 'gyp', |
815 'pattern': '.', | 815 'pattern': '.', |
816 'action': ['python', 'src/build/gyp_chromium'], | 816 'action': ['python', 'src/build/gyp_chromium'], |
817 }, | 817 }, |
818 ] | 818 ] |
819 | 819 |
820 | 820 |
OLD | NEW |