Remove usage of Gaol in the Windows configuration, since sandboxing is not supported there yet.

This commit is contained in:
Lars Bergstrom 2016-01-07 07:27:20 -06:00
parent 13d98f153a
commit 721693c43e
6 changed files with 43 additions and 9 deletions

View file

@ -25,6 +25,7 @@ extern crate core_graphics;
extern crate core_text;
extern crate devtools_traits;
extern crate euclid;
#[cfg(not(target_os = "windows"))]
extern crate gaol;
extern crate gfx;
extern crate gfx_traits;
@ -66,6 +67,7 @@ pub mod compositor_thread;
pub mod constellation;
mod headless;
pub mod pipeline;
#[cfg(not(target_os = "windows"))]
pub mod sandboxing;
mod scrolling;
mod surface_map;