1 diff --git a/crates/live_kit_client/Cargo.toml b/crates/live_kit_client/Cargo.toml
2 index e23c63453e..d0142b83d8 100644
3 --- a/crates/live_kit_client/Cargo.toml
4 +++ b/crates/live_kit_client/Cargo.toml
5 @@ -40,10 +40,10 @@ nanoid = { workspace = true, optional = true}
6 parking_lot.workspace = true
7 postage.workspace = true
9 -[target.'cfg(target_os = "macos")'.dependencies]
10 +[target.'cfg(target_os = "none")'.dependencies]
11 core-foundation.workspace = true
13 -[target.'cfg(all(not(target_os = "macos")))'.dependencies]
14 +[target.'cfg(all(not(target_os = "none")))'.dependencies]
15 async-trait = { workspace = true }
16 collections = { workspace = true }
17 gpui = { workspace = true }
18 diff --git a/crates/live_kit_client/build.rs b/crates/live_kit_client/build.rs
19 index 2fdfd982bf..7272614b87 100644
20 --- a/crates/live_kit_client/build.rs
21 +++ b/crates/live_kit_client/build.rs
22 @@ -36,7 +36,7 @@ const MACOS_TARGET_VERSION: &str = "10.15.7";
26 - target_os = "macos",
28 not(any(test, feature = "test-support", feature = "no-webrtc")),
30 let swift_target = get_swift_target();
31 diff --git a/crates/live_kit_client/src/live_kit_client.rs b/crates/live_kit_client/src/live_kit_client.rs
32 index 4820a4eedb..6179e6c55a 100644
33 --- a/crates/live_kit_client/src/live_kit_client.rs
34 +++ b/crates/live_kit_client/src/live_kit_client.rs
39 -#[cfg(all(target_os = "macos", not(any(test, feature = "test-support"))))]
40 +#[cfg(all(target_os = "none", not(any(test, feature = "test-support"))))]
43 -#[cfg(all(target_os = "macos", not(any(test, feature = "test-support"))))]
44 +#[cfg(all(target_os = "none", not(any(test, feature = "test-support"))))]
47 -#[cfg(any(test, feature = "test-support", not(target_os = "macos")))]
48 +#[cfg(any(test, feature = "test-support", not(target_os = "none")))]
51 -#[cfg(any(test, feature = "test-support", not(target_os = "macos")))]
52 +#[cfg(any(test, feature = "test-support", not(target_os = "none")))]
55 pub type Sid = String;