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 8 pub mod cmdline; 9 pub mod config; 10 #[cfg(feature = "gdb")] 11 pub mod gdb; 12 #[cfg(feature = "gpu")] 13 mod gpu_config; 14 #[cfg(feature = "plugin")] 15 pub mod plugin; 16 #[cfg(target_arch = "x86_64")] 17 pub mod ratelimit; 18 pub mod sys; 19