| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 'src/third_party/pdfium': | 261 'src/third_party/pdfium': |
| 262 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 262 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 263 | 263 |
| 264 'src/third_party/boringssl/src': | 264 'src/third_party/boringssl/src': |
| 265 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 265 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 266 | 266 |
| 267 'src/third_party/py_trace_event/src': | 267 'src/third_party/py_trace_event/src': |
| 268 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 268 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 269 | 269 |
| 270 'src/third_party/dom_distiller_js/dist': | 270 'src/third_party/dom_distiller_js/dist': |
| 271 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'e87b378779c5641f50fc7ef885a2f88f26e47b7f', | 271 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'f092aa790a0eb66135fa26d98a5f118997ed446d', |
| 272 | 272 |
| 273 'src/third_party/catapult': | 273 'src/third_party/catapult': |
| 274 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 274 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
| 275 Var('catapult_revision'), | 275 Var('catapult_revision'), |
| 276 | 276 |
| 277 'src/third_party/openh264/src': | 277 'src/third_party/openh264/src': |
| 278 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', | 278 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
48234162033e3e11b0335f3131cdfe488', |
| 279 | 279 |
| 280 'src/third_party/re2/src': | 280 'src/third_party/re2/src': |
| 281 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', | 281 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 { | 954 { |
| 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 956 'name': 'gyp', | 956 'name': 'gyp', |
| 957 'pattern': '.', | 957 'pattern': '.', |
| 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 959 }, | 959 }, |
| 960 ] | 960 ] |
| 961 | 961 |
| 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |