crosvm/crosvm.rs
1// Copyright 2019 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! The root level module that includes the config and aggregate of the submodules for running said
6//! configs.
7
8pub mod cmdline;
9pub mod config;
10#[cfg(feature = "gdb")]
11pub mod gdb;
12#[cfg(feature = "gpu")]
13mod gpu_config;
14#[cfg(target_arch = "x86_64")]
15pub mod ratelimit;
16pub mod sys;