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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 'src/third_party/pdfium': | 260 'src/third_party/pdfium': |
261 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 261 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
262 | 262 |
263 'src/third_party/boringssl/src': | 263 'src/third_party/boringssl/src': |
264 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 264 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
265 | 265 |
266 'src/third_party/py_trace_event/src': | 266 'src/third_party/py_trace_event/src': |
267 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 267 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
268 | 268 |
269 'src/third_party/dom_distiller_js/dist': | 269 'src/third_party/dom_distiller_js/dist': |
270 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '7e5e3db1b6ddecee66fc5f643729fda40976fd39', | 270 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'e21fe06cb71327ec62431f823e783d7b02f97b26', |
271 | 271 |
272 'src/third_party/catapult': | 272 'src/third_party/catapult': |
273 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 273 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
274 '97d95119247a42aa5590fcdf61a23554ad8899a4', | 274 '97d95119247a42aa5590fcdf61a23554ad8899a4', |
275 | 275 |
276 'src/third_party/openh264/src': | 276 'src/third_party/openh264/src': |
277 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', | 277 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', |
278 } | 278 } |
279 | 279 |
280 | 280 |
(...skipping 530 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 |