aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-07-27 21:07:15 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2016-07-27 23:20:11 +0200
commite87c34a9e9d5ff2a1f0f7d32d4ebb065b96ee57c (patch)
treee24e0d3b5f61a2ec69a19a155ae951453cababd2 /components/script/lib.rs
parent1d53dae96022cf1052ee4bfb1ee9c4adacf6b704 (diff)
downloadservo-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.rs2
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;