1 // Copyright 2017 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 #[cfg(target_arch = "x86_64")]
6 #[path = "linux-x86_64/mod.rs"]
7 pub mod linux;
8 
9 #[cfg(target_arch = "x86")]
10 #[path = "linux-x86/mod.rs"]
11 pub mod linux;
12 
13 #[cfg(target_arch = "aarch64")]
14 #[path = "linux-aarch64/mod.rs"]
15 pub mod linux;
16 
17 #[cfg(target_arch = "arm")]
18 #[path = "linux-arm/mod.rs"]
19 pub mod linux;
20