Roll Dawn from ffe356d558bc to 6c8aa8aff9d1 (12 revisions)

Propagated file rename from Dawn's repository down into our bazel build ('static_assert` -> `const_assert`).

https://dawn.googlesource.com/dawn.git/+log/ffe356d558bc..c98d57d662b7

2023-01-24 bajones@chromium.org Resolve some reader/writer dependency issues
2023-01-24 bclayton@google.com tint: Rename 'static_assert' to 'const_assert'
2023-01-24 bclayton@google.com tint: Rename 'type' to 'alias'
2023-01-24 dawn-autoroll@skia-public.iam.gserviceaccount.com Roll vulkan-deps from fbcb93d162f3 to f93afca731ce (9 revisions)
2023-01-23 dawn-autoroll@skia-public.iam.gserviceaccount.com Roll ANGLE from df202660de19 to ab334105e766 (6 revisions)
2023-01-23 dsinclair@chromium.org Remove program_builder include from type/
2023-01-23 bclayton@google.com tint/reader/wgsl/lexer: Make '>>=' splittable
2023-01-23 jrprice@google.com tint/ast: Add DiagnosticControl AST node
2023-01-23 dsinclair@chromium.org Pull unicode files out to own target.
2023-01-23 dsinclair@chromium.org Move SamplerKind out of ast and into type.
2023-01-23 dawn-autoroll@skia-public.iam.gserviceaccount.com Roll vulkan-deps from d7dfd14fa0d0 to fbcb93d162f3 (1 revision)
2023-01-23 dawn-autoroll@skia-public.iam.gserviceaccount.com Roll ANGLE from 3b27647cb9f8 to df202660de19 (1 revision)

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: I1373e6e79dfcb53dde9af1badb1b43ff16bb4b2f
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/633536
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 0632d84..e31b277 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@ffe356d558bce8b912890d8080dc7be94c0b0c2d",
+  "third_party/externals/dawn"                   : "https://dawn.googlesource.com/dawn.git@6c8aa8aff9d13050080ce3e7c471d5a72273ade7",
   "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 f559b72..5f900fd 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 = "ffe356d558bce8b912890d8080dc7be94c0b0c2d",
+        commit = "6c8aa8aff9d13050080ce3e7c471d5a72273ade7",
         remote = "https://dawn.googlesource.com/dawn.git",
     )
 
diff --git a/bazel/external/dawn/BUILD.bazel b/bazel/external/dawn/BUILD.bazel
index 731f54f..07bda7e 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_control.cc",
+    "src/tint/ast/diagnostic_control.h",
     "src/tint/ast/disable_validation_attribute.cc",
     "src/tint/ast/disable_validation_attribute.h",
     "src/tint/ast/discard_statement.cc",
@@ -795,8 +797,8 @@
     "src/tint/ast/stage_attribute.h",
     "src/tint/ast/statement.cc",
     "src/tint/ast/statement.h",
-    "src/tint/ast/static_assert.cc",
-    "src/tint/ast/static_assert.h",
+    "src/tint/ast/const_assert.cc",
+    "src/tint/ast/const_assert.h",
     "src/tint/ast/storage_texture.cc",
     "src/tint/ast/storage_texture.h",
     "src/tint/ast/stride_attribute.cc",
@@ -1147,6 +1149,8 @@
     "src/tint/type/sampled_texture.h",
     "src/tint/type/sampler.cc",
     "src/tint/type/sampler.h",
+    "src/tint/type/sampler_kind.cc",
+    "src/tint/type/sampler_kind.h",
     "src/tint/type/short_name.cc",
     "src/tint/type/short_name.h",
     "src/tint/type/storage_texture.cc",