aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r--python/servo/build_commands.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index ab9c769fb9f..b6b0a413026 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -248,10 +248,11 @@ class MachCommands(CommandBase):
if android:
target = self.config["android"]["target"]
- if magicleap:
- features += ["disable-native-bluetooth"]
- if not target:
- target = "aarch64-linux-android"
+ if not magicleap:
+ features += ["native-bluetooth"]
+
+ if magicleap and not target:
+ target = "aarch64-linux-android"
if target:
if self.config["tools"]["use-rustup"]: