diff options
Diffstat (limited to 'components/constellation/lib.rs')
-rw-r--r-- | components/constellation/lib.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/components/constellation/lib.rs b/components/constellation/lib.rs index 0e28b880cce..92495c50cd9 100644 --- a/components/constellation/lib.rs +++ b/components/constellation/lib.rs @@ -16,13 +16,6 @@ mod constellation; mod event_loop; mod network_listener; mod pipeline; -#[cfg(all( - not(target_os = "windows"), - not(target_os = "ios"), - not(target_os = "android"), - not(target_arch = "arm"), - not(target_arch = "aarch64") -))] mod sandboxing; mod serviceworker; mod session_history; @@ -32,11 +25,4 @@ pub use crate::constellation::{ Constellation, FromCompositorLogger, FromScriptLogger, InitialConstellationState, }; pub use crate::pipeline::UnprivilegedPipelineContent; -#[cfg(all( - not(target_os = "windows"), - not(target_os = "ios"), - not(target_os = "android"), - not(target_arch = "arm"), - not(target_arch = "aarch64") -))] pub use crate::sandboxing::{content_process_sandbox_profile, UnprivilegedContent}; |