| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 'src/third_party/SPIRV-Tools/src': | 143 'src/third_party/SPIRV-Tools/src': |
| 144 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' +
'@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', | 144 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' +
'@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', |
| 145 | 145 |
| 146 'src/third_party/angle': | 146 'src/third_party/angle': |
| 147 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 147 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 148 | 148 |
| 149 'src/third_party/colorama/src': | 149 'src/third_party/colorama/src': |
| 150 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2
789ecbd7e8db2e18e6b8', | 150 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2
789ecbd7e8db2e18e6b8', |
| 151 | 151 |
| 152 'src/third_party/icu': | 152 'src/third_party/icu': |
| 153 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '73e24736676b4b438270
fda44e5b2c83b49fdd80', | 153 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '9cd2828740572ba6f694
b9365236a8356fd06147', |
| 154 | 154 |
| 155 'src/third_party/hunspell_dictionaries': | 155 'src/third_party/hunspell_dictionaries': |
| 156 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'dc
6e7c25bf47cbfb466e0701fd2728b4a12e79d5', | 156 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'dc
6e7c25bf47cbfb466e0701fd2728b4a12e79d5', |
| 157 | 157 |
| 158 'src/third_party/leveldatabase/src': | 158 'src/third_party/leveldatabase/src': |
| 159 Var('chromium_git') + '/external/leveldb.git' + '@' + 'a7bff697baa062c8f6b8f
b760eacf658712b611a', | 159 Var('chromium_git') + '/external/leveldb.git' + '@' + 'a7bff697baa062c8f6b8f
b760eacf658712b611a', |
| 160 | 160 |
| 161 'src/third_party/snappy/src': | 161 'src/third_party/snappy/src': |
| 162 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 162 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 163 | 163 |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 ] | 1080 ] |
| 1081 | 1081 |
| 1082 recursedeps = [ | 1082 recursedeps = [ |
| 1083 # buildtools provides clang_format, libc++, and libc++abi | 1083 # buildtools provides clang_format, libc++, and libc++abi |
| 1084 'src/buildtools', | 1084 'src/buildtools', |
| 1085 # android_tools manages the NDK. | 1085 # android_tools manages the NDK. |
| 1086 'src/third_party/android_tools', | 1086 'src/third_party/android_tools', |
| 1087 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1087 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1088 ("src/third_party/angle", "DEPS.chromium"), | 1088 ("src/third_party/angle", "DEPS.chromium"), |
| 1089 ] | 1089 ] |
| OLD | NEW |