1#!/bin/bash 2# Copyright 2020 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/canvaskit) 19BASE_DIR=`cd $(dirname ${BASH_SOURCE[0]}) && pwd` 20CANVASKIT_DIR=$BASE_DIR/../../modules/canvaskit 21 22BUILD_DIR=/OUT $CANVASKIT_DIR/compile_gm.sh $@ 23 24# Make sure everybody can read and write the contents of /OUT 25chmod -R a+rw /OUT/* 26 27