Auto merge of #8692 - GuillaumeGomez:patch-1, r=Wafflespeanut

Ensure crate are alphabetically sorted

cc @nox

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8692)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-11-28 19:34:11 +05:30
commit dbff1ab336
22 changed files with 111 additions and 108 deletions

View file

@ -20,20 +20,19 @@
#[cfg(target_os = "android")]
#[macro_use]
extern crate android_glue;
extern crate env_logger;
extern crate gleam;
// The window backed by glutin
extern crate glutin_app as app;
extern crate env_logger;
#[cfg(target_os = "android")]
extern crate libc;
#[macro_use]
extern crate log;
extern crate offscreen_gl_context;
// The Servo engine
extern crate servo;
extern crate time;
extern crate gleam;
extern crate offscreen_gl_context;
use gleam::gl;
use offscreen_gl_context::GLContext;
use servo::Browser;
@ -222,8 +221,8 @@ android_start!(main);
#[cfg(target_os = "android")]
mod android {
extern crate libc;
extern crate android_glue;
extern crate libc;
use self::libc::c_int;
use std::borrow::ToOwned;