Roll Dawn from 6c8aa8aff9d1 to f0d8edecee77 (6 revisions)

Add some new Dawn files to bazel/external/dawn/BUILD.bazel.

https://dawn.googlesource.com/dawn.git/+log/6c8aa8aff9d1..f0d8edecee77

2023-01-24 bclayton@google.com tint: Fix x86 build
2023-01-24 bclayton@google.com tint/reader/wgsl: Use ClassifyTemplateArguments()
2023-01-24 jrprice@google.com tint/ast: Add DiagnosticAttribute AST node
2023-01-24 bclayton@google.com tint/reader/wgsl: Add ClassifyTemplateArguments()
2023-01-24 dawn-autoroll@skia-public.iam.gserviceaccount.com Roll vulkan-deps from f93afca731ce to a2f348c2039f (3 revisions)
2023-01-24 dawn-autoroll@skia-public.iam.gserviceaccount.com Roll ANGLE from ab334105e766 to a654666c00c1 (3 revisions)

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/dawn-skia-autoroll
Please CC enga@google.com,nicolettep@google.com on the revert to ensure that a human
is aware of the problem.

To file a bug in Dawn: https://bugs.chromium.org/p/dawn/issues/entry
To file a bug in Skia: https://bugs.chromium.org/p/skia/issues/entry

To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md

Cq-Include-Trybots: skia/skia.primary:Build-Debian10-Clang-x86_64-Debug-Dawn
Bug: None
Tbr: enga@google.com,nicolettep@google.com
Change-Id: I913516eafa52ccfac63114dbb8266ea5ddf7f1c7
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/633547
Reviewed-by: Nicolette Prevost <nicolettep@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Nicolette Prevost <nicolettep@google.com>
diff --git a/DEPS b/DEPS
index de9ec40..a061906 100644
--- a/DEPS
+++ b/DEPS
@@ -24,7 +24,7 @@
   "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@6c8aa8aff9d13050080ce3e7c471d5a72273ade7",
+  "third_party/externals/dawn"                   : "https://dawn.googlesource.com/dawn.git@f0d8edecee77d05fb3e670ca5a77ad211116e78a",
   "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 afdb8a8..fc91cd9 100644
--- a/bazel/deps.bzl
+++ b/bazel/deps.bzl
@@ -22,7 +22,7 @@
     new_git_repository(
         name = "dawn",
         build_file = "@//bazel/external/dawn:BUILD.bazel",
-        commit = "6c8aa8aff9d13050080ce3e7c471d5a72273ade7",
+        commit = "f0d8edecee77d05fb3e670ca5a77ad211116e78a",
         remote = "https://dawn.googlesource.com/dawn.git",
     )
 
diff --git a/bazel/external/dawn/BUILD.bazel b/bazel/external/dawn/BUILD.bazel
index 07bda7e..5f198c5 100644
--- a/bazel/external/dawn/BUILD.bazel
+++ b/bazel/external/dawn/BUILD.bazel
@@ -712,6 +712,8 @@
     "src/tint/ast/depth_multisampled_texture.h",
     "src/tint/ast/depth_texture.cc",
     "src/tint/ast/depth_texture.h",
+    "src/tint/ast/diagnostic_attribute.cc",
+    "src/tint/ast/diagnostic_attribute.h",
     "src/tint/ast/diagnostic_control.cc",
     "src/tint/ast/diagnostic_control.h",
     "src/tint/ast/disable_validation_attribute.cc",
@@ -1227,6 +1229,8 @@
     "src/tint/writer/spirv/operand.h",
     "src/tint/writer/spirv/scalar_constant.h",
     # From dawn/src/tint/BUILD.gn:libtint_wgsl_reader_src
+    "src/tint/reader/wgsl/classify_template_args.cc",
+    "src/tint/reader/wgsl/classify_template_args.h",
     "src/tint/reader/wgsl/lexer.cc",
     "src/tint/reader/wgsl/lexer.h",
     "src/tint/reader/wgsl/parser.cc",