diff options
Diffstat (limited to 'ports/servo/non_android_main.rs')
-rw-r--r-- | ports/servo/non_android_main.rs | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/ports/servo/non_android_main.rs b/ports/servo/non_android_main.rs index f246c8d3e4f..80e3f18a72a 100644 --- a/ports/servo/non_android_main.rs +++ b/ports/servo/non_android_main.rs @@ -2,32 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -extern crate backtrace; -extern crate euclid; -#[cfg(target_os = "windows")] -extern crate gdi32; -extern crate gleam; -extern crate glutin; -extern crate keyboard_types; -#[macro_use] -extern crate lazy_static; -#[cfg(any(target_os = "linux", target_os = "macos"))] -extern crate osmesa_sys; -extern crate servo; -#[cfg(feature = "unstable")] -#[macro_use] -extern crate sig; -#[cfg(any( - target_os = "macos", - target_os = "linux", - target_os = "windows" -))] -extern crate tinyfiledialogs; -#[cfg(target_os = "windows")] -extern crate user32; -#[cfg(target_os = "windows")] -extern crate winapi; -extern crate winit; +#[macro_use] extern crate lazy_static; +#[cfg(feature = "unstable")] #[macro_use] extern crate sig; // The window backed by glutin mod glutin_app; |