File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
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 @@ -9,7 +9,6 @@ extern crate gleam;
9
9
extern crate glutin;
10
10
#[ macro_use] extern crate lazy_static;
11
11
// The window backed by glutin
12
- #[ macro_use] extern crate log;
13
12
#[ cfg( any( target_os = "linux" , target_os = "macos" ) ) ] extern crate osmesa_sys;
14
13
extern crate servo;
15
14
#[ cfg( feature = "unstable" ) ]
You can’t perform that action at this time.
0 commit comments