1#!/bin/bash
2# Copyright 2018 Google LLC
3#
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7# This assumes it is being run inside a docker container of emsdk-base
8# and a Skia checkout has been mounted at /SRC and the output directory
9# is mounted at /OUT
10
11set +e
12set -x
13# Clean out previous builds (ignoring any errors for things like folders)
14# (e.g. we don't want to delete /OUT/depot_tools/)
15rm -f /OUT/*
16set -e
17
18#BASE_DIR is the dir this script is in ($SKIA_ROOT/infra/pathkit)
19BASE_DIR=`cd $(dirname ${BASH_SOURCE[0]}) && pwd`
20PATHKIT_DIR=$BASE_DIR/../../modules/pathkit
21
22BUILD_DIR=/OUT $PATHKIT_DIR/compile.sh $@
23
24