// 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;7use linux as platform;8pub(crate) use linux::*;9} else if #[cfg(windows)] {10mod windows;11use windows as platform;12pub(crate) use windows::*;13}14}1516pub(crate) use platform::get_acpi_event_sock;171819