diff --git a/DEPS b/DEPS index 8defdeee1105..79e7cd5814ff 100644 --- a/DEPS +++ b/DEPS @@ -24,7 +24,7 @@ deps = { "third_party/externals/d3d12allocator" : "https://skia.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/D3D12MemoryAllocator.git@169895d529dfce00390a20e69c2f516066fe7a3b", # Dawn requires jinja2 and markupsafe for the code generator, tint for SPIRV compilation, and abseil for string formatting. # When the Dawn revision is updated these should be updated from the Dawn DEPS as well. - "third_party/externals/dawn" : "https://dawn.googlesource.com/dawn.git@664e1e070201cc00fba02891a0f632e46c250aab", + "third_party/externals/dawn" : "https://dawn.googlesource.com/dawn.git@c755ec54aa80d162416b9eba69a778b7e25dc73c", "third_party/externals/jinja2" : "https://chromium.googlesource.com/chromium/src/third_party/jinja2@ee69aa00ee8536f61db6a451f3858745cf587de6", "third_party/externals/markupsafe" : "https://chromium.googlesource.com/chromium/src/third_party/markupsafe@0944e71f4b2cb9a871bcbe353f95e889b64a611a", "third_party/externals/abseil-cpp" : "https://skia.googlesource.com/external/github.com/abseil/abseil-cpp.git@cb436cf0142b4cbe47aae94223443df7f82e2920", diff --git a/bazel/deps.bzl b/bazel/deps.bzl index 173363da3e07..18bc2eee25aa 100644 --- a/bazel/deps.bzl +++ b/bazel/deps.bzl @@ -26,7 +26,7 @@ def git_repos_from_deps(ws = "@"): new_git_repository( name = "dawn", build_file = ws + "//bazel/external/dawn:BUILD.bazel", - commit = "664e1e070201cc00fba02891a0f632e46c250aab", + commit = "c755ec54aa80d162416b9eba69a778b7e25dc73c", remote = "https://dawn.googlesource.com/dawn.git", ) diff --git a/bazel/external/dawn/BUILD.bazel b/bazel/external/dawn/BUILD.bazel index 01bc3510f60c..f40ced6f8914 100644 --- a/bazel/external/dawn/BUILD.bazel +++ b/bazel/external/dawn/BUILD.bazel @@ -1056,6 +1056,7 @@ TINT_SRCS = [ "src/tint/builtin/extension.h", "src/tint/builtin/function.cc", "src/tint/builtin/function.h", + "src/tint/builtin/interpolation.h", "src/tint/builtin/interpolation_sampling.cc", "src/tint/builtin/interpolation_sampling.h", "src/tint/builtin/interpolation_type.cc",