aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorImanol Fernandez <mortimergoro@gmail.com>2017-09-29 23:19:33 +0200
committerImanol Fernandez <mortimergoro@gmail.com>2017-09-30 14:31:22 +0200
commite93130026a62b5c20187e99fda8db97f2b5a36e1 (patch)
tree77393ffa62848c44ac844afeff1771d3b0bd67e1 /python/servo/command_base.py
parentffa03380caee4cf1ffd0c43a219936cb9a2e0b85 (diff)
downloadservo-e93130026a62b5c20187e99fda8db97f2b5a36e1.tar.gz
servo-e93130026a62b5c20187e99fda8db97f2b5a36e1.zip
Implement Gradle flavors
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py3
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"