aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/gfx/Cargo.toml6
-rw-r--r--ports/glutin/Cargo.toml3
2 files changed, 9 insertions, 0 deletions
diff --git a/components/gfx/Cargo.toml b/components/gfx/Cargo.toml
index 4d393342f0b..bc8fd008a08 100644
--- a/components/gfx/Cargo.toml
+++ b/components/gfx/Cargo.toml
@@ -76,6 +76,9 @@ git = "https://github.com/servo/rust-fontconfig"
[target.x86_64-unknown-linux-gnu.dependencies.fontconfig]
git = "https://github.com/servo/rust-fontconfig"
+[target.arm-unknown-linux-gnueabihf.dependencies.fontconfig]
+git = "https://github.com/servo/rust-fontconfig"
+
[target.arm-linux-androideabi.dependencies.fontconfig]
git = "https://github.com/servo/rust-fontconfig"
@@ -85,6 +88,9 @@ git = "https://github.com/servo/rust-freetype"
[target.x86_64-unknown-linux-gnu.dependencies.freetype]
git = "https://github.com/servo/rust-freetype"
+[target.arm-unknown-linux-gnueabihf.dependencies.freetype]
+git = "https://github.com/servo/rust-freetype"
+
[target.arm-linux-androideabi.dependencies.freetype]
git = "https://github.com/servo/rust-freetype"
diff --git a/ports/glutin/Cargo.toml b/ports/glutin/Cargo.toml
index 97e82ca6d02..667761f3b97 100644
--- a/ports/glutin/Cargo.toml
+++ b/ports/glutin/Cargo.toml
@@ -51,6 +51,9 @@ x11 = "*"
[target.x86_64-unknown-linux-gnu.dependencies]
x11 = "*"
+[target.arm-unknown-linux-gnueabihf.dependencies]
+x11 = "*"
+
[target.x86_64-apple-darwin.dependencies.cgl]
git = "https://github.com/servo/cgl-rs"