mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-13 10:51:35 +00:00
I picked the wrong googletest folder when switching to chromium deps. This CL fixes it to use the correct one. Bug: tint:9 Change-Id: I9da1b3a7418f6738ffe8ac89aaa7104868b236c6 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/16461 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Dan Sinclair <dsinclair@google.com>
26 lines
954 B
Python
26 lines
954 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
'github': '/external/github.com',
|
|
|
|
'cpplint_revision': '305ac8725a166ed42e3f5dd3f80d6de2cf840ef1',
|
|
'googletest_revision': 'e588eb1ff9ff6598666279b737b27f983156ad85',
|
|
'spirv_headers_revision': '0a7fc45259910f07f00c5a3fa10be5678bee1f83',
|
|
'spirv_tools_revision': 'e1688b60caf77e7efd9e440e57cca429ca7c5a1e',
|
|
}
|
|
|
|
deps = {
|
|
'third_party/cpplint': Var('chromium_git') + Var('github') +
|
|
'/google/styleguide.git@' + Var('cpplint_revision'),
|
|
|
|
'third_party/googletest': Var('chromium_git') + Var('github') +
|
|
'/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
'third_party/spirv-headers': Var('chromium_git') + Var('github') +
|
|
'/KhronosGroup/SPIRV-Headers.git@' + Var('spirv_headers_revision'),
|
|
|
|
'third_party/spirv-tools': Var('chromium_git') + Var('github') +
|
|
'/KhronosGroup//SPIRV-Tools.git@' + Var('spirv_tools_revision'),
|
|
}
|