diff options
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index aa0c635bf53..418e8d7f897 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -27,8 +27,8 @@ extern crate fnv; #[cfg(target_os = "linux")] extern crate fontconfig; extern crate fontsan; -#[cfg(any(target_os = "linux", target_os = "android"))] -extern crate freetype; +#[cfg(any(target_os = "linux", target_os = "android"))] extern crate freetype; +#[cfg(any(target_os = "linux", target_os = "android"))] extern crate servo_allocator; extern crate gfx_traits; // Eventually we would like the shaper to be pluggable, as many operating systems have their own |