| 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' + '@' + '47e51739fd00badb
ceba5bc26b8abc8bbd530989', | 127 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '5583f990fa8b90f1
454f531f1a0f2ad41106a7d8', |
| 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/testing/gtest': | 135 'src/testing/gtest': |
| 136 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '
6f8a66431cb592dad629028a50b3dd418a408c87', | 136 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '
6f8a66431cb592dad629028a50b3dd418a408c87', |
| 137 | 137 |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1142 recursedeps = [ | 1142 recursedeps = [ |
| 1143 # buildtools provides clang_format, libc++, and libc++abi | 1143 # buildtools provides clang_format, libc++, and libc++abi |
| 1144 'src/buildtools', | 1144 'src/buildtools', |
| 1145 # android_tools manages the NDK. | 1145 # android_tools manages the NDK. |
| 1146 'src/third_party/android_tools', | 1146 'src/third_party/android_tools', |
| 1147 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1147 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1148 ("src/third_party/angle", "DEPS.chromium"), | 1148 ("src/third_party/angle", "DEPS.chromium"), |
| 1149 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1149 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1150 ("src/third_party/swiftshader", "DEPS"), | 1150 ("src/third_party/swiftshader", "DEPS"), |
| 1151 ] | 1151 ] |
| OLD | NEW |