diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2018-11-08 13:59:47 -0600 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2018-11-09 16:24:09 -0600 |
commit | 08270f07fcb670fa078a6ef49f0b047f8299c0ab (patch) | |
tree | 644c6f49a2cce0fd37412e1d74d005758149e665 /python/servo/build_commands.py | |
parent | ed0e6e1bb2f6ed7fd7b43b0ae935ce0e2b33016c (diff) | |
download | servo-08270f07fcb670fa078a6ef49f0b047f8299c0ab.tar.gz servo-08270f07fcb670fa078a6ef49f0b047f8299c0ab.zip |
Get the magicleap build to work in CI
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 9 |
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"]: |