| 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 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 # Download Telemetry's binary dependencies | 1146 # Download Telemetry's binary dependencies |
| 1147 { | 1147 { |
| 1148 'name': 'fetch_telemetry_binary_dependencies', | 1148 'name': 'fetch_telemetry_binary_dependencies', |
| 1149 'pattern': '.', | 1149 'pattern': '.', |
| 1150 'action': [ 'python', | 1150 'action': [ 'python', |
| 1151 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_d
ependencies', | 1151 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_d
ependencies', |
| 1152 ], | 1152 ], |
| 1153 }, | 1153 }, |
| 1154 ] | 1154 ] |
| 1155 | 1155 |
| 1156 hooks_os = { |
| 1157 'fuchsia': [ |
| 1158 { |
| 1159 'name': 'fuchsia_sdk', |
| 1160 'pattern': '.', |
| 1161 'action': [ |
| 1162 'python', |
| 1163 'src/build/fuchsia/update_sdk.py', |
| 1164 '3886a632c4a472fa7ef9eab35b45b63359e387fa', |
| 1165 ], |
| 1166 }, |
| 1167 ], |
| 1168 # TODO(scottmg|thakis): Move the Android-only hooks from above here. |
| 1169 } |
| 1170 |
| 1156 recursedeps = [ | 1171 recursedeps = [ |
| 1157 # buildtools provides clang_format, libc++, and libc++abi | 1172 # buildtools provides clang_format, libc++, and libc++abi |
| 1158 'src/buildtools', | 1173 'src/buildtools', |
| 1159 # android_tools manages the NDK. | 1174 # android_tools manages the NDK. |
| 1160 'src/third_party/android_tools', | 1175 'src/third_party/android_tools', |
| 1161 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1176 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1162 ("src/third_party/angle", "DEPS.chromium"), | 1177 ("src/third_party/angle", "DEPS.chromium"), |
| 1163 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1178 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1164 ("src/third_party/swiftshader", "DEPS"), | 1179 ("src/third_party/swiftshader", "DEPS"), |
| 1165 ] | 1180 ] |
| OLD | NEW |