1 // Copyright 2020 The Chromium OS Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 pub mod common; 6 pub mod constants; 7 pub mod layout; 8 9 #[cfg(feature = "audio_cras")] 10 pub mod cras_backend; 11 12 pub mod vios_backend; 13 14 pub use vios_backend::new_sound; 15 pub use vios_backend::SoundError; 16