diff options
Diffstat (limited to 'components/constellation/lib.rs')
-rw-r--r-- | components/constellation/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/constellation/lib.rs b/components/constellation/lib.rs index e4278c595cc..77b367d25fd 100644 --- a/components/constellation/lib.rs +++ b/components/constellation/lib.rs @@ -17,7 +17,7 @@ mod constellation; mod event_loop; mod network_listener; mod pipeline; -#[cfg(all(not(target_os = "windows"), not(target_os = "ios")))] +#[cfg(all(not(target_os = "windows"), not(target_os = "ios"), not(target_os = "android")))] mod sandboxing; mod session_history; mod timer_scheduler; @@ -26,5 +26,5 @@ pub use crate::constellation::{ Constellation, FromCompositorLogger, FromScriptLogger, InitialConstellationState, }; pub use crate::pipeline::UnprivilegedPipelineContent; -#[cfg(all(not(target_os = "windows"), not(target_os = "ios")))] +#[cfg(all(not(target_os = "windows"), not(target_os = "ios"), not(target_os = "android")))] pub use crate::sandboxing::content_process_sandbox_profile; |