diff options
author | Daniel Adams <70986246+msub2@users.noreply.github.com> | 2024-07-23 22:00:50 -1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 08:00:50 +0000 |
commit | e425ad0cb722b01420ddc315492d13067828250e (patch) | |
tree | 87baeefaa138eeb3bcd3c7cc0a4938d782f17952 /python/servo/build_commands.py | |
parent | b6652f88d163fe38982a9d2bb2f797a349559288 (diff) | |
download | servo-e425ad0cb722b01420ddc315492d13067828250e.tar.gz servo-e425ad0cb722b01420ddc315492d13067828250e.zip |
Remove googlevr feature (#32840)
* Remove googlevr feature
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Remove googlevr and oculusvr from python scripts
Signed-off-by: Daniel Adams <msub2official@gmail.com>
* Remove vr checks entirely
Signed-off-by: Daniel Adams <msub2official@gmail.com>
---------
Signed-off-by: Daniel Adams <msub2official@gmail.com>
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 2dc335236c3..93a432041df 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -140,13 +140,8 @@ class MachCommands(CommandBase): ) if self.is_android_build and not no_package: - flavor = None - if "googlevr" in self.features: - flavor = "googlevr" - elif "oculusvr" in self.features: - flavor = "oculusvr" rv = Registrar.dispatch("package", context=self.context, build_type=build_type, - target=self.cross_compile_target, flavor=flavor) + target=self.cross_compile_target, flavor=None) if rv: return rv |