mirror of
https://github.com/servo/servo.git
synced 2025-07-21 22:33:41 +01:00
Load GStreamer plugins on Windows arm64.
This commit is contained in:
parent
9336931377
commit
e9a7544e7e
2 changed files with 6 additions and 4 deletions
|
@ -126,7 +126,8 @@ pub use servo_url as url;
|
|||
|
||||
#[cfg(any(
|
||||
all(target_os = "android", target_arch = "arm"),
|
||||
target_arch = "x86_64"
|
||||
target_arch = "x86_64",
|
||||
all(target_os = "windows", target_arch = "aarch64"),
|
||||
))]
|
||||
mod media_platform {
|
||||
use super::ServoMedia;
|
||||
|
@ -207,7 +208,8 @@ mod media_platform {
|
|||
|
||||
#[cfg(not(any(
|
||||
all(target_os = "android", target_arch = "arm"),
|
||||
target_arch = "x86_64"
|
||||
target_arch = "x86_64",
|
||||
all(target_os = "windows", target_arch = "aarch64"),
|
||||
)))]
|
||||
mod media_platform {
|
||||
use super::ServoMedia;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue