From e631c00cbacfd5364a930208eb588d07b5c5356a Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 4 Mar 2020 14:15:39 +0000 Subject: [PATCH] Switch to the chromium mirror for DEPS This Cl upates the deps file to use the chromium mirror instead of github directly. Change-Id: Ie38bae8b171027f08054345df9ffd3ed940c1281 Bug: tint:9 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/16460 Reviewed-by: Corentin Wallez Reviewed-by: Dan Sinclair --- DEPS | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/DEPS b/DEPS index ca0fea414d..bca1bba452 100644 --- a/DEPS +++ b/DEPS @@ -1,25 +1,25 @@ use_relative_paths = True vars = { - 'google_git': 'https://github.com/google', - 'khronos_git': 'https://github.com/KhronosGroup', + 'chromium_git': 'https://chromium.googlesource.com', + 'github': '/external/github.com', - 'cpplint_revision': '26470f9ccb354ff2f6d098f831271a1833701b28', - 'googletest_revision': 'e588eb1ff9ff6598666279b737b27f983156ad85', + 'cpplint_revision': '305ac8725a166ed42e3f5dd3f80d6de2cf840ef1', + 'googletest_revision': '703ca235f0a83aeebf2dfe2cc56a7eac362cf078', 'spirv_headers_revision': '0a7fc45259910f07f00c5a3fa10be5678bee1f83', 'spirv_tools_revision': 'e1688b60caf77e7efd9e440e57cca429ca7c5a1e', } deps = { - 'third_party/cpplint': Var('google_git') + '/styleguide.git@' + - Var('cpplint_revision'), + 'third_party/cpplint': Var('chromium_git') + Var('github') + + '/google/styleguide.git@' + Var('cpplint_revision'), - 'third_party/googletest': Var('google_git') + '/googletest.git@' + - Var('googletest_revision'), + 'third_party/googletest': Var('chromium_git') + '/chromium/src/third_party' + + '/googletest.git@' + Var('googletest_revision'), - 'third_party/spirv-headers': Var('khronos_git') + '/SPIRV-Headers.git@' + - Var('spirv_headers_revision'), + 'third_party/spirv-headers': Var('chromium_git') + Var('github') + + '/KhronosGroup/SPIRV-Headers.git@' + Var('spirv_headers_revision'), - 'third_party/spirv-tools': Var('khronos_git') + '/SPIRV-Tools.git@' + - Var('spirv_tools_revision'), + 'third_party/spirv-tools': Var('chromium_git') + Var('github') + + '/KhronosGroup//SPIRV-Tools.git@' + Var('spirv_tools_revision'), }