Remove emscripten implementation

This commit is contained in:
Pierre Krieger 2016-10-31 17:49:39 +01:00
parent 9e404f2fe6
commit cf7c691bd6
5 changed files with 1 additions and 448 deletions

View file

@ -15,11 +15,8 @@ mod platform;
#[cfg(target_os = "ios")]
#[path="ios/mod.rs"]
mod platform;
#[cfg(target_os = "emscripten")]
#[path="emscripten/mod.rs"]
mod platform;
#[cfg(all(not(target_os = "ios"), not(target_os = "windows"), not(target_os = "linux"),
not(target_os = "macos"), not(target_os = "android"), not(target_os = "dragonfly"),
not(target_os = "freebsd"), not(target_os = "openbsd"), not(target_os = "emscripten")))]
not(target_os = "freebsd"), not(target_os = "openbsd")))]
use this_platform_is_not_supported;