mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 11:40:05 +00:00
9d71fb6764
3d787f5a0d...c7d0bc8309
$ git log 3d787f5a0..c7d0bc830 --date=short --no-merges --format='%ad %ae %s'
2023-02-27 phoebeliang Reorder printers list.
2023-02-27 absl-team Reformat to current g3doc style guide. No content changes.
2023-02-21 sergionso Fix error in_death_test_child_process: undeclared identifier
2023-02-02 benayang Update testing.md
Created with:
roll-dep external/googletest
Co-authored-by: GitHub Actions[bot] <>
35 lines
970 B
Python
35 lines
970 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': 'c7b4db79f340f7a9981e8a484f6d5785e24242d1',
|
|
|
|
'googletest_revision': 'c7d0bc8309fc5b3bb73ee33e86fb6e3d760480aa',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v3.13.0.1',
|
|
|
|
're2_revision': '3a8436ac436124a57a4e22d5c8713a2d42b381d7',
|
|
'spirv_headers_revision': 'aa331ab0ffcb3a67021caa1a0c1c9017712f2f31',
|
|
}
|
|
|
|
deps = {
|
|
'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'),
|
|
}
|
|
|