Bug 1684797 - Don't enable qcms c_bindings feature by default. r=aosmond

Differential Revision: https://phabricator.services.mozilla.com/D100642
This commit is contained in:
Jeff Muizelaar 2021-01-04 01:54:14 +00:00
parent 8558796b8d
commit 8dbf596048
3 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,7 @@ keywords = ["color"]
categories = ["graphics"]
[features]
default = ["c_bindings"]
default = []
c_bindings = ["libc"]
iccv4-enabled = []

View File

@ -15,6 +15,7 @@ libc = "0.2"
[dependencies.qcms]
path = ".."
features = ["c_bindings"]
# Prevent this from interfering with workspaces
[workspace]

View File

@ -68,7 +68,7 @@ firefox-accounts-bridge = { path = "../../../../services/fxaccounts/rust-bridge/
l10nregistry-ffi = { path = "../../../../intl/l10n/rust/l10nregistry-ffi" }
processtools = { path = "../../../components/processtools" }
qcms = { path = "../../../../gfx/qcms" }
qcms = { path = "../../../../gfx/qcms", features = ["c_bindings"] }
[target.'cfg(not(target_os = "android"))'.dependencies]
viaduct = { git = "https://github.com/mozilla/application-services", rev = "8a576fbe79199fa8664f64285524017f74ebcc5f"}