diff options
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 4 |
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()) |