// 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 mod linux;7use linux as platform;8} else if #[cfg(windows)] {9pub mod windows;10use windows as platform;11}12}1314pub(crate) use platform::apply_raw_disk_file_options;15pub(crate) use platform::open_raw_disk_image;16pub(crate) use platform::read_from_disk;171819