aboutsummaryrefslogtreecommitdiffstats
path: root/components/servo/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/servo/main.rs')
-rw-r--r--components/servo/main.rs14
1 files changed, 6 insertions, 8 deletions
diff --git a/components/servo/main.rs b/components/servo/main.rs
index 66b5b670547..8112b7fa4cc 100644
--- a/components/servo/main.rs
+++ b/components/servo/main.rs
@@ -17,17 +17,15 @@
#![feature(start)]
-// The Servo engine
-extern crate servo;
-
-// The window backed by glutin
-extern crate glutin_app as app;
-extern crate time;
-extern crate env_logger;
-
#[cfg(target_os = "android")]
#[macro_use]
extern crate android_glue;
+// The window backed by glutin
+extern crate glutin_app as app;
+extern crate env_logger;
+// The Servo engine
+extern crate servo;
+extern crate time;
use servo::Browser;
use servo::compositing::windowing::WindowEvent;