diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-03-29 03:49:53 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2018-05-23 11:06:19 -0400 |
commit | d6b8aaf576364a622f0ce637d3239c551750ca02 (patch) | |
tree | bc9fa389b9a8f529452382a7c56019c4a1caf772 /python/servo/package_commands.py | |
parent | 319556cf6a8e2717d16e4908943bbc07083ac1c7 (diff) | |
download | servo-d6b8aaf576364a622f0ce637d3239c551750ca02.tar.gz servo-d6b8aaf576364a622f0ce637d3239c551750ca02.zip |
Support i686-linux-android target.
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index 8fb97e9eb70..c2820b114b5 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -200,6 +200,8 @@ class PackageCommands(CommandBase): build_type = "Arm64" elif "armv7" in android_target: build_type = "Armv7" + elif "i686" in android_target: + build_type = "x86" else: build_type = "Arm" |