mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 04:26:38 +00:00
Highlights: * goldfish battery never worked on Windows, but it sort of compiled anyways downstream. This CL makes it unix only because it never worked on Windows as a device anyway. BUG=b:237597358 TEST=builds Change-Id: Ia5fc3b5e5fcd243d8454646b00a6857085d018ee Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3741432 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Noah Gold <nkgold@google.com> Reviewed-by: Vikram Auradkar <auradkar@google.com>
11 lines
296 B
Rust
11 lines
296 B
Rust
// Copyright 2022 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(unix)] {
|
|
pub mod unix;
|
|
} else if #[cfg(windows)] {
|
|
pub mod windows;
|
|
}
|
|
}
|