| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'android.googlesource.com', | 117 'android.googlesource.com', |
| 118 'boringssl.googlesource.com', | 118 'boringssl.googlesource.com', |
| 119 'chromium.googlesource.com', | 119 'chromium.googlesource.com', |
| 120 'pdfium.googlesource.com', | 120 'pdfium.googlesource.com', |
| 121 'skia.googlesource.com', | 121 'skia.googlesource.com', |
| 122 'swiftshader.googlesource.com', | 122 'swiftshader.googlesource.com', |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 deps = { | 125 deps = { |
| 126 'src/breakpad/src': | 126 'src/breakpad/src': |
| 127 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '97a230bd4e7217bc
04626880a8975fbe591a7ea7', | 127 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '29e4a2c5dfd36961
d9207755e1f78faf2c933b44', |
| 128 | 128 |
| 129 'src/buildtools': | 129 'src/buildtools': |
| 130 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_re
vision'), | 130 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_re
vision'), |
| 131 | 131 |
| 132 'src/sdch/open-vcdiff': | 132 'src/sdch/open-vcdiff': |
| 133 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' +
'2b9bd1fe548520e9355e457a134bab7e2f9c56c0', | 133 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' +
'2b9bd1fe548520e9355e457a134bab7e2f9c56c0', |
| 134 | 134 |
| 135 'src/third_party/freetype/src': | 135 'src/third_party/freetype/src': |
| 136 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var(
'freetype_revision'), | 136 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var(
'freetype_revision'), |
| 137 | 137 |
| (...skipping 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1172 } | 1172 } |
| 1173 | 1173 |
| 1174 recursedeps = [ | 1174 recursedeps = [ |
| 1175 # buildtools provides clang_format, libc++, and libc++abi | 1175 # buildtools provides clang_format, libc++, and libc++abi |
| 1176 'src/buildtools', | 1176 'src/buildtools', |
| 1177 # android_tools manages the NDK. | 1177 # android_tools manages the NDK. |
| 1178 'src/third_party/android_tools', | 1178 'src/third_party/android_tools', |
| 1179 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1179 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1180 ("src/third_party/angle", "DEPS.chromium"), | 1180 ("src/third_party/angle", "DEPS.chromium"), |
| 1181 ] | 1181 ] |
| OLD | NEW |