diff options
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index dab4df1a772..2e6db17aa59 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -551,6 +551,9 @@ class CommandBase(object): def android_build_dir(self, dev): return path.join(self.get_target_dir(), self.config["android"]["target"], "debug" if dev else "release") + def android_aar_dir(self): + return path.join(self.context.topdir, "target", "android_aar") + def handle_android_target(self, target): if target == "arm-linux-androideabi": self.config["android"]["platform"] = "android-18" |