From 9f32f3b423ae198600d2a4513d370dfcfaf70bb8 Mon Sep 17 00:00:00 2001 From: Xiaohan Wang Date: Thu, 1 Oct 2020 14:46:54 -0700 Subject: [PATCH] webrtc: Replace `is_desktop_linux` with `is_linux` `is_desktop_linux` is the same as `is_linux` now and will be deprecated Bug: chromium:1132395 Change-Id: If3746da85558d20a0c321357c8dd3bcadfee7a9b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/186424 Reviewed-by: Henrik Andreassson Reviewed-by: Mirko Bonadei Commit-Queue: Xiaohan Wang Cr-Commit-Position: refs/heads/master@{#32318} --- webrtc.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc.gni b/webrtc.gni index 35cb16fb59..fa3765aa7e 100644 --- a/webrtc.gni +++ b/webrtc.gni @@ -112,7 +112,7 @@ declare_args() { # By default it's only enabled on desktop Linux (excludes ChromeOS) and # only when using the sysroot as PipeWire is not available in older and # supported Ubuntu and Debian distributions. - rtc_use_pipewire = is_desktop_linux && use_sysroot + rtc_use_pipewire = is_linux && use_sysroot # Set this to link PipeWire directly instead of using the dlopen. rtc_link_pipewire = false