(solutions)
| 184 | |
| 185 | |
| 186 | def get_v8_solution(solutions): |
| 187 | for solution in solutions: |
| 188 | if (solution["name"] == "v8" or |
| 189 | solution["url"] == "https://chromium.googlesource.com/v8/v8.git"): |
| 190 | return solution |
| 191 | return None |
| 192 | |
| 193 | |
| 194 | # Note: this function is reused by update-compile-commands.py. When renaming |