2018-10-08 19:07:42 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright 2018 Google LLC
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2018-10-29 20:39:10 +00:00
|
|
|
# Assumes this is in a docker container with an output directory mounted at /OUT.
|
|
|
|
if [ -d /OUT ]; then
|
|
|
|
rm -rf /OUT/* # Clean out previous builds
|
|
|
|
export SKQP_OUTPUT_DIR=/OUT
|
|
|
|
fi
|
|
|
|
"$(dirname "$0")"/../../tools/skqp/make_universal_apk.py x86
|