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' + '@' + '37070c5e680f3356
f7b14d239518a104edbc2c97', | 127 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '10162f61e9ca4992
e7851c69c7b8c6eddaab9e8e', |
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 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1147 recursedeps = [ | 1147 recursedeps = [ |
1148 # buildtools provides clang_format, libc++, and libc++abi | 1148 # buildtools provides clang_format, libc++, and libc++abi |
1149 'src/buildtools', | 1149 'src/buildtools', |
1150 # android_tools manages the NDK. | 1150 # android_tools manages the NDK. |
1151 'src/third_party/android_tools', | 1151 'src/third_party/android_tools', |
1152 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1152 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1153 ("src/third_party/angle", "DEPS.chromium"), | 1153 ("src/third_party/angle", "DEPS.chromium"), |
1154 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1154 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
1155 ("src/third_party/swiftshader", "DEPS"), | 1155 ("src/third_party/swiftshader", "DEPS"), |
1156 ] | 1156 ] |
OLD | NEW |