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.
|
|
|
|
#
|
|
|
|
# Assumes this is in a docker container with a skia repo mounted at /SRC
|
|
|
|
|
2018-10-26 17:23:34 +00:00
|
|
|
SKIA_ROOT="$(cd "$(dirname "$0")/../.."; pwd)"
|
2018-10-08 19:07:42 +00:00
|
|
|
|
2018-10-26 17:23:34 +00:00
|
|
|
"$SKIA_ROOT"/tools/skqp/make_universal_apk x86
|
2018-10-08 19:07:42 +00:00
|
|
|
|
|
|
|
# Clean out previous builds
|
2018-10-26 17:23:34 +00:00
|
|
|
rm -rf /OUT/*
|
|
|
|
cp "$SKIA_ROOT"/out/skqp/skqp-universal-debug.apk /OUT/skqp-universal-x86-debug.apk
|