| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 | 271 |
| 272 'src/third_party/py_trace_event/src': | 272 'src/third_party/py_trace_event/src': |
| 273 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 273 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 274 | 274 |
| 275 'src/third_party/dom_distiller_js/dist': | 275 'src/third_party/dom_distiller_js/dist': |
| 276 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '445b024cb55f367636e6da4a61796a2afecd6d3f', | 276 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '445b024cb55f367636e6da4a61796a2afecd6d3f', |
| 277 | 277 |
| 278 'src/third_party/catapult': | 278 'src/third_party/catapult': |
| 279 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 279 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
| 280 '53ddd9ffa0a29872a62b8288a4adefb7ec3f590d', | 280 '53ddd9ffa0a29872a62b8288a4adefb7ec3f590d', |
| 281 |
| 282 'src/third_party/openh264/src': |
| 283 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', |
| 281 } | 284 } |
| 282 | 285 |
| 283 | 286 |
| 284 deps_os = { | 287 deps_os = { |
| 285 'win': { | 288 'win': { |
| 286 'src/chrome/tools/test/reference_build/chrome_win': | 289 'src/chrome/tools/test/reference_build/chrome_win': |
| 287 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', | 290 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', |
| 288 | 291 |
| 289 'src/third_party/cygwin': | 292 'src/third_party/cygwin': |
| 290 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', | 293 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 }, | 809 }, |
| 807 { | 810 { |
| 808 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 811 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 809 'name': 'gyp', | 812 'name': 'gyp', |
| 810 'pattern': '.', | 813 'pattern': '.', |
| 811 'action': ['python', 'src/build/gyp_chromium'], | 814 'action': ['python', 'src/build/gyp_chromium'], |
| 812 }, | 815 }, |
| 813 ] | 816 ] |
| 814 | 817 |
| 815 | 818 |
| OLD | NEW |