| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 'src/third_party/SPIRV-Tools/src': | 139 'src/third_party/SPIRV-Tools/src': |
| 140 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' +
'@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', | 140 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' +
'@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', |
| 141 | 141 |
| 142 'src/third_party/angle': | 142 'src/third_party/angle': |
| 143 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 143 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 144 | 144 |
| 145 'src/third_party/colorama/src': | 145 'src/third_party/colorama/src': |
| 146 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2
789ecbd7e8db2e18e6b8', | 146 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2
789ecbd7e8db2e18e6b8', |
| 147 | 147 |
| 148 'src/third_party/icu': | 148 'src/third_party/icu': |
| 149 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'e0d9b90cae887a97977b
0992f7a746eb1c01b9ac', | 149 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '7ddf5e9ba15a65e69276
7d3e45260a75f9419f0b', |
| 150 | 150 |
| 151 'src/third_party/hunspell_dictionaries': | 151 'src/third_party/hunspell_dictionaries': |
| 152 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'dc
6e7c25bf47cbfb466e0701fd2728b4a12e79d5', | 152 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'dc
6e7c25bf47cbfb466e0701fd2728b4a12e79d5', |
| 153 | 153 |
| 154 'src/third_party/leveldatabase/src': | 154 'src/third_party/leveldatabase/src': |
| 155 Var('chromium_git') + '/external/leveldb.git' + '@' + 'a7bff697baa062c8f6b8f
b760eacf658712b611a', | 155 Var('chromium_git') + '/external/leveldb.git' + '@' + 'a7bff697baa062c8f6b8f
b760eacf658712b611a', |
| 156 | 156 |
| 157 'src/third_party/snappy/src': | 157 'src/third_party/snappy/src': |
| 158 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 158 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 159 | 159 |
| (...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1021 ] | 1021 ] |
| 1022 | 1022 |
| 1023 recursedeps = [ | 1023 recursedeps = [ |
| 1024 # buildtools provides clang_format, libc++, and libc++abi | 1024 # buildtools provides clang_format, libc++, and libc++abi |
| 1025 'src/buildtools', | 1025 'src/buildtools', |
| 1026 # android_tools manages the NDK. | 1026 # android_tools manages the NDK. |
| 1027 'src/third_party/android_tools', | 1027 'src/third_party/android_tools', |
| 1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1029 ("src/third_party/angle", "DEPS.chromium"), | 1029 ("src/third_party/angle", "DEPS.chromium"), |
| 1030 ] | 1030 ] |
| OLD | NEW |