Roll build and tools/clang together

Additional change to cfx_textrenderoptions.h to have an explicit copy
assignment operator, to resolve compile error about implicit copy (from
-Wdeprecated-copy flag).

Replace 'blacklist' with 'ignorelist' in tools/msan, to match changes
in https://crrev.com/886773.

Roll build/ 1343ce81a..e6942ef1c (250 commits)

https://chromium.googlesource.com/chromium/src/build.git/+log/1343ce81aab4..e6942ef1c557

Created with:
  roll-dep build

Roll tools/clang/ ba668f13d..de043ecd5 (33 commits)

https://chromium.googlesource.com/chromium/src/tools/clang/+log/ba668f13d135..de043ecd5b2b

Created with:
  roll-dep tools/clang

Bug: pdfium:1691
Change-Id: Iabe614acc6f834e86623ec1d3fbeeda56dca43ba
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/82071
Commit-Queue: Alan Screen <awscreen@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
diff --git a/DEPS b/DEPS
index c3b9a17..3481be1 100644
--- a/DEPS
+++ b/DEPS
@@ -29,7 +29,7 @@
   # Three lines of non-changing comments so that
   # the commit queue can handle CLs rolling build
   # and whatever else without interference from each other.
-  'build_revision': '1343ce81aab4e198c313b113ce278393187dc65c',
+  'build_revision': 'e6942ef1c557b2ae17d993ebf83d8b3c10cf3061',
   # Three lines of non-changing comments so that
   # the commit queue can handle CLs rolling buildtools
   # and whatever else without interference from each other.
@@ -45,7 +45,7 @@
   # Three lines of non-changing comments so that
   # the commit queue can handle CLs rolling clang
   # and whatever else without interference from each other.
-  'clang_revision': 'ba668f13d135f1d01faf9b03c9a05f5877ac3f51',
+  'clang_revision': 'de043ecd5b2bd5dc3627a16cf91770a1c65ab440',
   # Three lines of non-changing comments so that
   # the commit queue can handle CLs rolling clang_dsymutil
   # and whatever else without interference from each other.
diff --git a/core/fxge/cfx_textrenderoptions.h b/core/fxge/cfx_textrenderoptions.h
index b216b97..19d30af 100644
--- a/core/fxge/cfx_textrenderoptions.h
+++ b/core/fxge/cfx_textrenderoptions.h
@@ -24,6 +24,8 @@
   constexpr explicit CFX_TextRenderOptions(AliasingType type)
       : aliasing_type(type) {}
   constexpr CFX_TextRenderOptions(const CFX_TextRenderOptions& other) = default;
+  CFX_TextRenderOptions& operator=(const CFX_TextRenderOptions& other) =
+      default;
 
   // Indicates whether anti-aliasing is enabled.
   bool IsSmooth() const {
diff --git a/tools/msan/blacklist.txt b/tools/msan/ignorelist.txt
similarity index 100%
rename from tools/msan/blacklist.txt
rename to tools/msan/ignorelist.txt