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