diff options
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index e474c65de21..38c43af3019 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -34,14 +34,11 @@ extern crate bitflags; extern crate euclid; extern crate fnv; -// Platforms that use Freetype/Fontconfig library dependencies #[cfg(any(target_os = "linux", target_os = "android"))] extern crate fontconfig; +extern crate fontsan; #[cfg(any(target_os = "linux", target_os = "android"))] extern crate freetype; - -extern crate fontsan; - extern crate gfx_traits; // Eventually we would like the shaper to be pluggable, as many operating systems have their own |