mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Disable gaol on aarch64
This commit is contained in:
parent
1d0af2dc8d
commit
c194e00914
5 changed files with 56 additions and 10 deletions
|
@ -17,7 +17,13 @@ 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")))]
|
||||
#[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 session_history;
|
||||
mod timer_scheduler;
|
||||
|
@ -26,5 +32,11 @@ 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")))]
|
||||
#[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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue