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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 268 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
269 | 269 |
270 'src/third_party/py_trace_event/src': | 270 'src/third_party/py_trace_event/src': |
271 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 271 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
272 | 272 |
273 'src/third_party/dom_distiller_js/dist': | 273 'src/third_party/dom_distiller_js/dist': |
274 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'e21fe06cb71327ec62431f823e783d7b02f97b26', | 274 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'e21fe06cb71327ec62431f823e783d7b02f97b26', |
275 | 275 |
276 'src/third_party/catapult': | 276 'src/third_party/catapult': |
277 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 277 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
278 '017a5a5670fb0d56233a84700a50238f01e43c8f', | 278 'bfb0b9e4dd3f5924ecf3a441e4ffb0e899d7a7d3', |
279 | 279 |
280 'src/third_party/openh264/src': | 280 'src/third_party/openh264/src': |
281 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', | 281 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', |
282 | 282 |
283 'src/third_party/re2/src': | 283 'src/third_party/re2/src': |
284 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', | 284 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', |
285 } | 285 } |
286 | 286 |
287 | 287 |
288 deps_os = { | 288 deps_os = { |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 'src/tools', | 833 'src/tools', |
834 ], | 834 ], |
835 }, | 835 }, |
836 { | 836 { |
837 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 837 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
838 'name': 'gyp', | 838 'name': 'gyp', |
839 'pattern': '.', | 839 'pattern': '.', |
840 'action': ['python', 'src/build/gyp_chromium'], | 840 'action': ['python', 'src/build/gyp_chromium'], |
841 }, | 841 }, |
842 ] | 842 ] |
OLD | NEW |