Chromium Code Reviews| 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 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1153 # Download Telemetry's binary dependencies | 1153 # Download Telemetry's binary dependencies |
| 1154 { | 1154 { |
| 1155 'name': 'fetch_telemetry_binary_dependencies', | 1155 'name': 'fetch_telemetry_binary_dependencies', |
| 1156 'pattern': '.', | 1156 'pattern': '.', |
| 1157 'action': [ 'python', | 1157 'action': [ 'python', |
| 1158 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_d ependencies', | 1158 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_d ependencies', |
| 1159 ], | 1159 ], |
| 1160 }, | 1160 }, |
| 1161 ] | 1161 ] |
| 1162 | 1162 |
| 1163 hooks_os = { | |
| 1164 'fuchsia': [ | |
| 1165 { | |
| 1166 'name': 'fuchsia_sdk', | |
| 1167 'pattern': '.', | |
| 1168 'action': [ | |
| 1169 'python', | |
| 1170 'src/build/fuchsia/update_sdk.py', | |
| 1171 '3886a632c4a472fa7ef9eab35b45b63359e387fa', | |
| 1172 ], | |
| 1173 }, | |
| 1174 ], | |
|
Nico
2017/05/15 20:20:02
Can you add a TODO here (on me, if you want) to mo
scottmg
2017/05/15 20:34:47
Done.
| |
| 1175 } | |
| 1176 | |
| 1163 recursedeps = [ | 1177 recursedeps = [ |
| 1164 # buildtools provides clang_format, libc++, and libc++abi | 1178 # buildtools provides clang_format, libc++, and libc++abi |
| 1165 'src/buildtools', | 1179 'src/buildtools', |
| 1166 # android_tools manages the NDK. | 1180 # android_tools manages the NDK. |
| 1167 'src/third_party/android_tools', | 1181 'src/third_party/android_tools', |
| 1168 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1182 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1169 ("src/third_party/angle", "DEPS.chromium"), | 1183 ("src/third_party/angle", "DEPS.chromium"), |
| 1170 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. | 1184 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. |
| 1171 ("src/third_party/swiftshader", "DEPS"), | 1185 ("src/third_party/swiftshader", "DEPS"), |
| 1172 ] | 1186 ] |
| OLD | NEW |