| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', |
| 282 | 282 |
| 283 # Used for building libFuzzers (only supports Linux). | 283 # Used for building libFuzzers (only supports Linux). |
| 284 'src/third_party/libFuzzer/src': | 284 'src/third_party/libFuzzer/src': |
| 285 Var('chromium_git') + '/chromium/llvm-project/llvm/lib/Fuzzer.git' + '@' +
Var('libfuzzer_revision'), | 285 Var('chromium_git') + '/chromium/llvm-project/llvm/lib/Fuzzer.git' + '@' +
Var('libfuzzer_revision'), |
| 286 |
| 287 'src/third_party/visualmetrics/src': |
| 288 Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git
' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6', |
| 286 } | 289 } |
| 287 | 290 |
| 288 | 291 |
| 289 deps_os = { | 292 deps_os = { |
| 290 'win': { | 293 'win': { |
| 291 'src/third_party/cygwin': | 294 'src/third_party/cygwin': |
| 292 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', | 295 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', |
| 293 | 296 |
| 294 'src/third_party/psyco_win32': | 297 'src/third_party/psyco_win32': |
| 295 Var('chromium_git') + '/chromium/deps/psyco_win32.git' + '@' + 'f5af9f6910e
e5a8075bbaeed0591469f1661d868', | 298 Var('chromium_git') + '/chromium/deps/psyco_win32.git' + '@' + 'f5af9f6910e
e5a8075bbaeed0591469f1661d868', |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 { | 957 { |
| 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 958 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 956 'name': 'gyp', | 959 'name': 'gyp', |
| 957 'pattern': '.', | 960 'pattern': '.', |
| 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 961 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 959 }, | 962 }, |
| 960 ] | 963 ] |
| 961 | 964 |
| 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 965 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 966 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |