aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-10-15 02:13:39 +0200
committerSimon Sapin <simon.sapin@exyr.org>2017-10-15 02:13:39 +0200
commitbc123ad6c3888ee15e2841ecae21d5cdd098a2a7 (patch)
tree057d447547b9a5f6b315e693559c503a37944102
parent6558e01dca5889f18af6a2e0969b899b1dc00ad6 (diff)
downloadservo-bc123ad6c3888ee15e2841ecae21d5cdd098a2a7.tar.gz
servo-bc123ad6c3888ee15e2841ecae21d5cdd098a2a7.zip
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.
-rw-r--r--ports/cef/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/ports/cef/Cargo.toml b/ports/cef/Cargo.toml
index 21ce2165cac..20693cd8385 100644
--- a/ports/cef/Cargo.toml
+++ b/ports/cef/Cargo.toml
@@ -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"}