Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / infra / canvaskit / build_gmtests.sh
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
11 set +e
12 set -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/)
15 rm -f /OUT/*
16 set -e
17
18 # BASE_DIR is the dir this script is in ($SKIA_ROOT/infra/canvaskit)
19 BASE_DIR=`cd $(dirname ${BASH_SOURCE[0]}) && pwd`
20 CANVASKIT_DIR=$BASE_DIR/../../modules/canvaskit
21
22 BUILD_DIR=/OUT $CANVASKIT_DIR/compile_gm.sh $@
23
24 # Make sure everybody can read and write the contents of /OUT
25 chmod -R 0777 /OUT/*
26