aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-02-02 01:30:50 -0700
committerbors-servo <metajack+bors@gmail.com>2015-02-02 01:30:50 -0700
commit896cdcb96a98d4b4858d24806ee67db6f63c9fb1 (patch)
treebfb05f02056e2487bfa999b1ecbebdc660d2c0aa /python/servo
parentccdf0bd65e415eff024e034519f733eeded32812 (diff)
parentf495884dcbf7814eb55721e5a30ba2ef865cf960 (diff)
downloadservo-896cdcb96a98d4b4858d24806ee67db6f63c9fb1.tar.gz
servo-896cdcb96a98d4b4858d24806ee67db6f63c9fb1.zip
auto merge of #4798 : glennw/servo/remove-glfw, r=SimonSapin
Diffstat (limited to 'python/servo')
-rw-r--r--python/servo/build_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 9a5b6a609f1..12990921abd 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -74,7 +74,7 @@ class MachCommands(CommandBase):
if is_headless_build():
opts += ["--no-default-features"]
- features += ["glutin_app", "headless"]
+ features += ["headless"]
if android:
features += ["android_glue"]
@@ -144,7 +144,7 @@ class MachCommands(CommandBase):
self.ensure_bootstrapped()
args = ["cargo", "test", "--no-run"]
if is_headless_build():
- args += ["--no-default-features", "--features", "glutin_app headless"]
+ args += ["--no-default-features", "--features", "headless"]
return subprocess.call(
args,
env=self.build_env(), cwd=self.servo_crate())