diff --git a/DEPS b/DEPS index a49fdd5ee22a..f7a1c05627fd 100644 --- a/DEPS +++ b/DEPS @@ -55,12 +55,12 @@ deps = { "third_party/externals/vulkanmemoryallocator" : "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@7de5cc00de50e71a3aab22dea52fbb7ff4efceb6", # vulkan-deps is a meta-repo containing several interdependent Khronos Vulkan repositories. # When the vulkan-deps revision is updated, those repos (spirv-*, vulkan-*) should be updated as well. - "third_party/externals/vulkan-deps" : "https://chromium.googlesource.com/vulkan-deps@a8c2037f213a5a437fe65edd6c20ab931cbe7c17", - "third_party/externals/spirv-cross" : "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross@fc9bee27f445644635e83ef111ef54944bb6e3af", - "third_party/externals/spirv-headers" : "https://skia.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers.git@e08a279cf9448085b920764db1bf27658b208795", - "third_party/externals/spirv-tools" : "https://skia.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools.git@d4c0abdcad60325a2ab3c00a81847e2dbdc927a2", + "third_party/externals/vulkan-deps" : "https://chromium.googlesource.com/vulkan-deps@14eaf973d52a53387b352fe9a1d73cced9048992", + "third_party/externals/spirv-cross" : "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross@4faeb81f3fb489248a6b633ed2662271777756e3", + "third_party/externals/spirv-headers" : "https://skia.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers.git@7f1d2f4158704337aff1f739c8e494afc5716e7e", + "third_party/externals/spirv-tools" : "https://skia.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools.git@6110f30a36775e4d452968407f12b16694df2cc8", "third_party/externals/vulkan-headers" : "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers@870a531486f77dfaf124395de80ed38867400d31", - "third_party/externals/vulkan-tools" : "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools@df10a2759b4b60d59b735882217a749d8e5be660", + "third_party/externals/vulkan-tools" : "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools@b647be6419696dac2f5e009d7e27913d987f037b", #"third_party/externals/v8" : "https://chromium.googlesource.com/v8/v8.git@5f1ae66d5634e43563b2d25ea652dfb94c31a3b4", "third_party/externals/wuffs" : "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git@a0041ac0310b3156b963e2f2bea09245f25ec073", "third_party/externals/zlib" : "https://chromium.googlesource.com/chromium/src/third_party/zlib@c876c8f87101c5a75f6014b0f832499afeb65b73", diff --git a/bazel/deps.bzl b/bazel/deps.bzl index ef0f3dd0c1fb..173363da3e07 100644 --- a/bazel/deps.bzl +++ b/bazel/deps.bzl @@ -157,19 +157,19 @@ def git_repos_from_deps(ws = "@"): new_git_repository( name = "spirv_cross", build_file = ws + "//bazel/external/spirv_cross:BUILD.bazel", - commit = "fc9bee27f445644635e83ef111ef54944bb6e3af", + commit = "4faeb81f3fb489248a6b633ed2662271777756e3", remote = "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross", ) git_repository( name = "spirv_headers", - commit = "e08a279cf9448085b920764db1bf27658b208795", + commit = "7f1d2f4158704337aff1f739c8e494afc5716e7e", remote = "https://skia.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers.git", ) git_repository( name = "spirv_tools", - commit = "d4c0abdcad60325a2ab3c00a81847e2dbdc927a2", + commit = "6110f30a36775e4d452968407f12b16694df2cc8", remote = "https://skia.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools.git", ) @@ -183,7 +183,7 @@ def git_repos_from_deps(ws = "@"): new_git_repository( name = "vulkan_tools", build_file = ws + "//bazel/external/vulkan_tools:BUILD.bazel", - commit = "df10a2759b4b60d59b735882217a749d8e5be660", + commit = "b647be6419696dac2f5e009d7e27913d987f037b", remote = "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools", )