Remove unnecessary dependencies and features from top-level Cargo.tomls

The features for each crate will be computed based on the union of features
specified in the dependency graph.  Specifying the same ones again just adds
more ways for them to get out of sync.
This commit is contained in:
Matt Brubeck 2016-05-10 16:03:42 -07:00
parent cce565466d
commit b2e874e151
11 changed files with 15 additions and 37 deletions

View file

@ -197,9 +197,6 @@ class MachCommands(CommandBase):
if debug_mozjs or self.config["build"]["debug-mozjs"]:
features += ["script/debugmozjs"]
if android:
features += ["android_glue"]
if features:
opts += ["--features", "%s" % ' '.join(features)]