aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2016-05-10 16:03:42 -0700
committerMatt Brubeck <mbrubeck@limpet.net>2016-05-11 08:46:55 -0700
commitb2e874e151548930d674a64940506f29a58541b8 (patch)
tree1edbacef47835295ad9bc4bef3b5e670b1e582d1 /python
parentcce565466d514271a523b0872facd1d90fbfba92 (diff)
downloadservo-b2e874e151548930d674a64940506f29a58541b8.tar.gz
servo-b2e874e151548930d674a64940506f29a58541b8.zip
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.
Diffstat (limited to 'python')
-rw-r--r--python/servo/build_commands.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index feca17976d0..3dca0f3fae6 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -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)]