1--- src/3rdparty/chromium/media/media_options.gni.orig 2025-08-15 18:30:00 UTC 2+++ src/3rdparty/chromium/media/media_options.gni 3@@ -214,12 +214,15 @@ declare_args() { 4 # Enables runtime selection of ALSA library for audio. 5 use_alsa = false 6 7+ # Enable runtime selection of sndio(7) 8+ use_sndio = false 9+ 10 # Alsa should be used on all non-Android, non-Mac POSIX systems - with the 11 # exception of CastOS desktop builds. 12 # 13 # TODO(crbug.com/1336055): Remove legacy target_cpu hack used for targeting 14 # desktop Chromecast builds. 15- if (is_posix && !is_android && !is_apple && 16+ if (is_posix && !is_android && !is_apple && !is_bsd && 17 (!is_castos || (target_cpu == "x86" || target_cpu == "x64") || 18 is_cast_audio_only)) { 19 use_alsa = true 20