Disable video-metadata build on arm architecture as well

This commit is contained in:
Guillaume Gomez 2016-07-27 21:07:15 +02:00
parent 1d53dae960
commit e87c34a9e9
3 changed files with 6 additions and 5 deletions

View file

@ -88,7 +88,7 @@ extern crate url;
#[macro_use]
extern crate util;
extern crate uuid;
#[cfg(not(target_os = "android"))]
#[cfg(not(any(target_os = "android", target_arch = "arm")))]
extern crate video_metadata;
extern crate webrender_traits;
extern crate websocket;