servo: Merge #6324 - Add ARM build support (from mmatyas:arm_build); r=Ms2ger

Source-Repo: https://github.com/servo/servo
Source-Revision: 9df13b906902fa298264816e0c3c88aea64c77df
This commit is contained in:
Mátyás Mustoha 2015-06-10 06:46:13 -06:00
Родитель 19c2399332
Коммит 86df863d26
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"