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 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 260 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
261 | 261 |
262 'src/third_party/py_trace_event/src': | 262 'src/third_party/py_trace_event/src': |
263 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 263 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
264 | 264 |
265 'src/third_party/dom_distiller_js/dist': | 265 'src/third_party/dom_distiller_js/dist': |
266 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'e21fe06cb71327ec62431f823e783d7b02f97b26', | 266 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'e21fe06cb71327ec62431f823e783d7b02f97b26', |
267 | 267 |
268 'src/third_party/catapult': | 268 'src/third_party/catapult': |
269 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 269 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
270 '1d2c8cd5bebcc2b94de44533032c40d85c2ddb77', | 270 '973a51b36f5ee02fb748e411c44cc55dced9a26d', |
271 | 271 |
272 'src/third_party/openh264/src': | 272 'src/third_party/openh264/src': |
273 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', | 273 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', |
274 | 274 |
275 'src/third_party/re2/src': | 275 'src/third_party/re2/src': |
276 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', | 276 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', |
277 } | 277 } |
278 | 278 |
279 | 279 |
280 deps_os = { | 280 deps_os = { |
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 'pattern': '\\.sha1', | 835 'pattern': '\\.sha1', |
836 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 836 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
837 }, | 837 }, |
838 { | 838 { |
839 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 839 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
840 'name': 'gyp', | 840 'name': 'gyp', |
841 'pattern': '.', | 841 'pattern': '.', |
842 'action': ['python', 'src/build/gyp_chromium'], | 842 'action': ['python', 'src/build/gyp_chromium'], |
843 }, | 843 }, |
844 ] | 844 ] |
OLD | NEW |