diff options
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index f632ce30a1c..ee630be47aa 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -470,10 +470,11 @@ class MachCommands(CommandBase): avd = "servo-x86" target = "i686-linux-android" print("Assuming --target " + target) + self.cross_compile_target = target - env = self.build_env(target=target) + env = self.build_env() os.environ["PATH"] = env["PATH"] - assert self.handle_android_target(target) + assert self.setup_configuration_for_android_target(target) apk = self.get_apk_path(release) py = path.join(self.context.topdir, "etc", "run_in_headless_android_emulator.py") |