mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Disable gaol on android
This commit is contained in:
parent
71f9619e60
commit
16beb65d49
5 changed files with 32 additions and 10 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue