// 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.34#[cfg(any(target_os = "android", target_os = "linux"))]5pub mod linux;67#[cfg(target_os = "macos")]8pub mod macos;910#[cfg(unix)]11pub mod unix;1213#[cfg(windows)]14pub mod windows;1516pub mod platform {17#[cfg(any(target_os = "android", target_os = "linux"))]18pub use super::linux::*;19#[cfg(target_os = "macos")]20pub use super::macos::*;21#[cfg(unix)]22pub use super::unix::*;23#[cfg(windows)]24pub use super::windows::*;25}2627pub use platform::*;282930