diff options
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 0fd0b59c304..995b1bc5587 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -5,25 +5,25 @@ #![feature(custom_derive, plugin)] #![plugin(serde_macros, plugins)] +#[macro_use] +extern crate bitflags; extern crate azure; -#[macro_use] extern crate bitflags; extern crate canvas_traits; +#[cfg(target_os = "macos")] +extern crate core_foundation; extern crate euclid; extern crate hyper; +#[cfg(target_os = "macos")] +extern crate io_surface; extern crate ipc_channel; extern crate layers; extern crate offscreen_gl_context; extern crate png; extern crate rustc_serialize; extern crate serde; -extern crate util; -extern crate url; extern crate style_traits; - -#[cfg(target_os = "macos")] -extern crate core_foundation; -#[cfg(target_os = "macos")] -extern crate io_surface; +extern crate url; +extern crate util; pub mod compositor_msg; pub mod constellation_msg; |