mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Make script depend on gecko-media
It's not used yet though.
This commit is contained in:
parent
856dc3c90a
commit
23d7783e02
6 changed files with 209 additions and 6 deletions
|
@ -23,6 +23,9 @@ phf_codegen = "0.7.18"
|
|||
phf_shared = "0.7.18"
|
||||
serde_json = "1.0"
|
||||
|
||||
[target.'cfg(all(any(target_os = "macos", target_os = "linux"), not(any(target_arch = "arm", target_arch = "aarch64"))))'.dependencies]
|
||||
gecko-media = {git = "https://github.com/servo/gecko-media.git"}
|
||||
|
||||
[target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies]
|
||||
tinyfiledialogs = "2.5.9"
|
||||
|
||||
|
|
|
@ -41,6 +41,9 @@ extern crate domobject_derive;
|
|||
extern crate encoding_rs;
|
||||
extern crate euclid;
|
||||
extern crate fnv;
|
||||
#[allow(unused_extern_crates)]
|
||||
#[cfg(all(any(target_os = "macos", target_os = "linux"), not(any(target_arch = "arm", target_arch = "aarch64"))))]
|
||||
extern crate gecko_media;
|
||||
extern crate gleam;
|
||||
extern crate half;
|
||||
#[macro_use] extern crate html5ever;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue