mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 03:30:06 +00:00
dc6676445b
* Roll external/googletest/ 6eb225cb8..5df0241ea (2 commits)6eb225cb88...5df0241ea4
$ git log 6eb225cb8..5df0241ea --date=short --no-merges --format='%ad %ae %s' 2024-02-14 absl-team gtest.h: add IWYU export pragmas 2024-02-13 absl-team Support Fuchsia target builds. Created with: roll-dep external/googletest * Roll external/re2/ b4c6fe091..ed9fc269e (1 commit)b4c6fe091b...ed9fc269e2
$ git log b4c6fe091..ed9fc269e --date=short --no-merges --format='%ad %ae %s' 2024-02-15 junyer Update @apple_support to version 1.12.0. Created with: roll-dep external/re2 --------- Co-authored-by: GitHub Actions[bot] <> Co-authored-by: Cassandra Beckley <cbeckley@google.com>
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'abseil_revision': '79ca5d7aad63973c83a4962a66ab07cd623131ea',
|
|
|
|
'effcee_revision': '19b4aa87af25cb4ee779a071409732f34bfc305c',
|
|
|
|
'googletest_revision': '5df0241ea4880e5a846775d3efc8b873f7b36c31',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': 'ed9fc269e2fdb299afe59e912928d31ad3fdcf7d',
|
|
'spirv_headers_revision': '05cc486580771e4fa7ddc89f5c9ee1e97382689a',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|