#!/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. # This assumes it is being run inside a docker container of emsdk-base # and a Skia checkout has been mounted at /SRC and the output directory # is mounted at /OUT set +e set -x # Clean out previous builds (ignoring any errors for things like folders) # (e.g. we don't want to delete /OUT/depot_tools/) rm -f /OUT/* # We want to clean out previously generated code and object files to avoid # previous builds contaminating this one. rm -rf /OUT/gen rm -rf /OUT/obj set -e #BASE_DIR is the dir this script is in ($SKIA_ROOT/infra/pathkit) BASE_DIR=`cd $(dirname ${BASH_SOURCE[0]}) && pwd` PATHKIT_DIR=$BASE_DIR/../../modules/pathkit BUILD_DIR=/OUT $PATHKIT_DIR/compile.sh $@ chmod -R 0777 /OUT/*