diff options
author | bors-servo <metajack+bors@gmail.com> | 2014-12-08 17:54:57 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2014-12-08 17:54:57 -0700 |
commit | 2741fd2e139b9cb8e9f14857877f567ecae3bced (patch) | |
tree | 4888fbfeb7e2ab740988a34b0992112efe26c5b9 /python/servo/command_base.py | |
parent | 1458bb439701274527308a29f2e5e65c3306f78a (diff) | |
parent | 030dab553e6ae37e2ef2cda8c897b9555d967d5d (diff) | |
download | servo-2741fd2e139b9cb8e9f14857877f567ecae3bced.tar.gz servo-2741fd2e139b9cb8e9f14857877f567ecae3bced.zip |
auto merge of #4292 : glennw/servo/android-ssl, r=mbrubeck
The glut makefile will be removed shortly after glutin lands
for android, so we need to build openssl for android elsewhere
in the build process.
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 a34104b734e..2af5fcd63c1 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -145,6 +145,9 @@ class CommandBase(object): def servo_crate(self): return path.join(self.context.topdir, "components", "servo") + def android_support_dir(self): + return path.join(self.context.topdir, "support", "android") + def ensure_bootstrapped(self): if self.context.bootstrapped: return |