SPIRV-Tools/DEPS
github-actions[bot] 01ee1bf317
Roll external/googletest/ b10fad38c..76bb2afb8 (1 commit) (#5485)
* Roll external/googletest/ b10fad38c..7c07a8636 (12 commits)

b10fad38c4...7c07a86369

$ git log b10fad38c..7c07a8636 --date=short --no-merges --format='%ad %ae %s'
2024-01-09 dmauro Update CI builds to use Bazel 7.0.0
2024-01-09 absl-team Add a note about argv requiring NULL termination.
2024-01-09 krzysio Disable -Wfloat-equal in AppropriateResolution().
2023-12-28 absl-team Accept move-only callables in `InvokeArguments`
2023-12-22 absl-team Minor documentation correction.
2023-12-19 dmauro Fix broken links in primer.md
2023-12-18 absl-team Fix data race in leak detection
2023-12-12 absl-team Add `FAIL_AT` macro variant of `FAIL` matching `ADD_FAILURE`, `ADD_FAILURE_AT`
2023-12-11 tomhughes Remove unnecessary conversion
2023-12-04 dmauro Skip find_package(Python3) when not building tests
2023-12-01 tamas.kenez Allow using external absl and re2.
2023-11-27 absl-team Implement `testing::Rethrow` to throw exceptions more easily via `std::exception_ptr`

Created with:
  roll-dep external/googletest

* Roll external/re2/ 7e0c1a9e2..c042630ed (5 commits)

7e0c1a9e24...c042630ed8

$ git log 7e0c1a9e2..c042630ed --date=short --no-merges --format='%ad %ae %s'
2023-12-22 junyer Report `kRegexpBadPerlOp` for look-behind assertions.
2023-12-14 junyer Delete the `AUTHORS` and `CONTRIBUTORS` files.
2023-12-14 junyer We don't need to set `--enable_bzlmod` anymore.
2023-12-12 junyer Fix an old bug that can manifest during factoring.
2023-12-11 olivier.mengue doc/mksyntaxgo: add Go doc links

Created with:
  roll-dep external/re2

* Roll external/spirv-headers/ 1c6bb2743..bdd1b2ab1 (5 commits)

1c6bb27435...bdd1b2ab1f

$ git log 1c6bb2743..bdd1b2ab1 --date=short --no-merges --format='%ad %ae %s'
2024-01-10 gleese Reserve an FPFastMathMode bit (#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (#391)
2024-01-03 joycebrum feat: Create dependabot.yml (#397)

Created with:
  roll-dep external/spirv-headers

---------

Co-authored-by: GitHub Actions[bot] <>
2024-01-11 16:59:38 +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': '7c07a863693b0c831f80473f7c6905d7e458682c',
# Use protobufs before they gained the dependency on abseil
'protobuf_revision': 'v21.12',
're2_revision': 'c042630ed8f94c32106d92a6a8deb192dabe558d',
'spirv_headers_revision': 'bdd1b2ab1f03e616047bbcf8971157dccd50c792',
}
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'),
}