diff options
author | Bastien Orivel <eijebong@bananium.fr> | 2018-12-09 19:11:45 +0100 |
---|---|---|
committer | Bastien Orivel <eijebong@bananium.fr> | 2018-12-20 20:53:13 +0100 |
commit | 16beb65d497d323ca64d2fd7f98ac11877c5296e (patch) | |
tree | 0d9094fbd007dcc08774c0393c1abb840dafbbcf /components/constellation/lib.rs | |
parent | 71f9619e60cbb47349e48cd679179ebd5678e789 (diff) | |
download | servo-16beb65d497d323ca64d2fd7f98ac11877c5296e.tar.gz servo-16beb65d497d323ca64d2fd7f98ac11877c5296e.zip |
Disable gaol on android
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; |