SPIRV-Tools/DEPS
github-actions[bot] 1928c76cd6
Roll external/googletest/ 2dd1c1319..829c19901 (1 commit) (#5444)
* Roll external/googletest/ 2dd1c1319..116b7e552 (3 commits)

2dd1c13195...116b7e5528

$ git log 2dd1c1319..116b7e552 --date=short --no-merges --format='%ad %ae %s'
2023-10-19 absl-team Improve error message for invalid parameterized test names.
2023-10-17 absl-team s/::testing::/testing::/ in test documentation outside of using statements to align with best practice
2023-10-17 dinor gtest-death-test-internal: Delete obsolete string constants

Created with:
  roll-dep external/googletest

* Roll external/re2/ ece4cecab..928a015e6 (1 commit)

ece4cecab5...928a015e6e

$ git log ece4cecab..928a015e6 --date=short --no-merges --format='%ad %ae %s'
2023-10-18 junyer Improve comments about `absl::optional<T>` support.

Created with:
  roll-dep external/re2

* Roll external/spirv-headers/ 4183b260f..88bc5e321 (1 commit)

4183b260f4...88bc5e321c

$ git log 4183b260f..88bc5e321 --date=short --no-merges --format='%ad %ae %s'
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (#384)

Created with:
  roll-dep external/spirv-headers

---------

Co-authored-by: GitHub Actions[bot] <>
2023-10-20 06:07:08 +00:00

40 lines
1.1 KiB
Python

use_relative_paths = True
vars = {
'github': 'https://github.com',
'abseil_revision': '79ca5d7aad63973c83a4962a66ab07cd623131ea',
'effcee_revision': '19b4aa87af25cb4ee779a071409732f34bfc305c',
'googletest_revision': '116b7e55281c4200151524b093ecc03757a4ffda',
# Use protobufs before they gained the dependency on abseil
'protobuf_revision': 'v21.12',
're2_revision': '928a015e6ecc02519abb5d4a8732099545c48346',
'spirv_headers_revision': '88bc5e321c2839707df8b1ab534e243e00744177',
}
deps = {
'external/abseil_cpp':
Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),
'external/effcee':
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
'external/googletest':
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
'external/protobuf':
Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
'external/re2':
Var('github') + '/google/re2.git@' + Var('re2_revision'),
'external/spirv-headers':
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
Var('spirv_headers_revision'),
}