aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-07-28 02:28:02 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2016-07-28 02:28:02 +0200
commit19134be74f9db238c600f5b9edc964d7bed65ff0 (patch)
treebff5f61aee6f671f9208d0f296f5aefcc0bf29dc /components/script/lib.rs
parente87c34a9e9d5ff2a1f0f7d32d4ebb065b96ee57c (diff)
downloadservo-19134be74f9db238c600f5b9edc964d7bed65ff0.tar.gz
servo-19134be74f9db238c600f5b9edc964d7bed65ff0.zip
Add condition to not use video-metadata on aarch64 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 a9497eb46b3..988bb312b97 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(any(target_os = "android", target_arch = "arm")))]
+#[cfg(not(any(target_os = "android", target_arch = "arm", target_arch = "aarch64")))]
extern crate video_metadata;
extern crate webrender_traits;
extern crate websocket;