Add a default 'unstable' feature to CEF

I recently moved that default from libservo to ports/servo,
which made CEF not have it anymore.

The different defaults made `./mach build-cef` after `./mach build`
rebuild many libraries (including serde and all of its recursive dependents)
and take a long time.
This commit is contained in:
Simon Sapin 2017-10-15 02:13:39 +02:00
parent 6558e01dca
commit bc123ad6c3

View file

@ -16,6 +16,9 @@ opt-level = 3
[features] [features]
debugmozjs = ["libservo/debugmozjs"] debugmozjs = ["libservo/debugmozjs"]
default = ["unstable", "default-except-unstable"]
default-except-unstable = []
unstable = ["libservo/unstable"]
[dependencies] [dependencies]
compositing = {path = "../../components/compositing"} compositing = {path = "../../components/compositing"}