[lsan][crashpad] Suppress leak sanitizer on crashpad_test.

Leak sanitizer detected bugs on the above tests. We suppress
the leak sanitizer on the leaky targets for now, and these leaks
need to be fixed to fully enable leak detector.

Bug: fuchsia:46559
Change-Id: I3f02c40e4b9bd48eceba7734b683cc8307e27591
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2067412
Reviewed-by: Scott Graham <scottmg@chromium.org>
Commit-Queue: Scott Graham <scottmg@chromium.org>
GitOrigin-RevId: f79cba47ba0d105be343f3e63d2f277cebf3a78c
diff --git a/BUILD.gn b/BUILD.gn
index 0ea3187..2f39e5a 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -35,6 +35,10 @@
         "util:util_test",
       ]
     }
+    if (crashpad_is_in_fuchsia) {
+      # TODO(fuchsia:46559): Fix the leaks and remove this.
+      deps += [ "//build/config/sanitizers:suppress-lsan.DO-NOT-USE-THIS" ]
+    }
   }
 
   if (crashpad_is_in_fuchsia) {