Index: skia/ext/SkMemory_new_handler.cpp
--- skia/ext/SkMemory_new_handler.cpp.orig
+++ skia/ext/SkMemory_new_handler.cpp
@@ -24,7 +24,7 @@
 #include <windows.h>
 #elif BUILDFLAG(IS_APPLE)
 #include <malloc/malloc.h>
-#else
+#elif !BUILDFLAG(IS_BSD)
 #include <malloc.h>
 #endif
 
@@ -110,7 +110,7 @@ static void* malloc_nothrow(size_t size, int debug_sen
   // TODO(b.kelemen): we should always use UncheckedMalloc but currently it
   // doesn't work as intended everywhere.
   void* result;
-#if BUILDFLAG(IS_IOS)
+#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_BSD)
   result = malloc(size);
 #else
   // It's the responsibility of the caller to check the return value.
