File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 17
17
18
18
#![ cfg_attr( feature = "unstable" , feature( core_intrinsics) ) ]
19
19
20
+ // Have this here rather than in non_android_main.rs to work around
21
+ // https://github.com/rust-lang/rust/issues/53205
22
+ #[ cfg( not( target_os = "android" ) ) ] #[ macro_use] extern crate log;
23
+
20
24
#[ cfg( not( target_os = "android" ) ) ] include ! ( "non_android_main.rs" ) ;
21
25
22
26
#[ cfg( target_os = "android" ) ]
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ extern crate euclid;
8
8
extern crate gleam;
9
9
extern crate glutin;
10
10
#[ macro_use] extern crate lazy_static;
11
- // The window backed by glutin
12
- #[ macro_use] extern crate log;
13
11
#[ cfg( any( target_os = "linux" , target_os = "macos" ) ) ] extern crate osmesa_sys;
14
12
extern crate servo;
15
13
#[ cfg( feature = "unstable" ) ]
@@ -21,9 +19,13 @@ extern crate winit;
21
19
#[ cfg( target_os = "windows" ) ] extern crate winapi;
22
20
#[ cfg( target_os = "windows" ) ] extern crate user32;
23
21
22
+ // The window backed by glutin
24
23
mod glutin_app;
24
+
25
25
mod resources;
26
26
27
+ mod browser;
28
+
27
29
use backtrace:: Backtrace ;
28
30
use servo:: Servo ;
29
31
use servo:: compositing:: windowing:: WindowEvent ;
@@ -37,8 +39,6 @@ use std::panic;
37
39
use std:: process;
38
40
use std:: thread;
39
41
40
- mod browser;
41
-
42
42
pub mod platform {
43
43
#[ cfg( target_os = "macos" ) ]
44
44
pub use platform:: macos:: deinit;
You can’t perform that action at this time.
0 commit comments