// Copyright 2022 The ChromiumOS Authors1// Use of this source code is governed by a BSD-style license that can be2// found in the LICENSE file.34cfg_if::cfg_if! {5if #[cfg(any(target_os = "android", target_os = "linux"))] {6pub(crate) mod linux;7pub use linux::UnixGpuDisplayExt as SysGpuDisplayExt;8pub(crate) use linux::UnixDisplayT as SysDisplayT;9} else if #[cfg(windows)] {10pub(crate) mod windows;11pub use windows::WinGpuDisplayExt as SysGpuDisplayExt;12pub(crate) use windows::WinDisplayT as SysDisplayT;13}14}151617