[UBsan][murmurhash] Temporarily disable UBSan

UBSan was reporting a zero-offset to nullptr. Disable UBSan for this
target for now, then we will come back to fix it once asan-ubsan is
migrated into CQ.

Bug: 46777
Change-Id: I8ad1c255a568f940e27257526afec84d56538ac2
diff --git a/BUILD.gn b/BUILD.gn
index 9e04c2a..a22c834 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -7,4 +7,8 @@
     "murmurhash.c",
     "murmurhash.h",
   ]
+
+  # TODO(46777): UBSan has found an instance of undefined behavior in this target.
+  # Disable UBSan for this target temporarily until it is migrated into CI/CQ.
+  configs += [ "//build/config:temporarily_disable_ubsan_do_not_use" ]
 }