Auto merge of #18885 - servo:unstable-cef, r=nox

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.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18885)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-10-15 06:12:44 -05:00 committed by GitHub
commit 086c48210c

View file

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