diff options
author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2016-07-27 21:07:15 +0200 |
---|---|---|
committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2016-07-27 23:20:11 +0200 |
commit | e87c34a9e9d5ff2a1f0f7d32d4ebb065b96ee57c (patch) | |
tree | e24e0d3b5f61a2ec69a19a155ae951453cababd2 /components/script/lib.rs | |
parent | 1d53dae96022cf1052ee4bfb1ee9c4adacf6b704 (diff) | |
download | servo-e87c34a9e9d5ff2a1f0f7d32d4ebb065b96ee57c.tar.gz servo-e87c34a9e9d5ff2a1f0f7d32d4ebb065b96ee57c.zip |
Disable video-metadata build on arm architecture as well
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 792aa24b438..a9497eb46b3 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -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; |