2018-01-22 21:51:55 +00:00
|
|
|
#! /bin/sh
|
2018-01-23 09:22:38 +00:00
|
|
|
|
2018-01-22 21:51:55 +00:00
|
|
|
# Copyright 2018 Google Inc.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2018-01-23 09:22:38 +00:00
|
|
|
if ! [ -f "$1" ]; then
|
|
|
|
printf 'Usage:\n %s META_JSON_FILE_PATH\n\n' "$0" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-01-22 21:51:55 +00:00
|
|
|
set -e -x
|
|
|
|
|
2018-01-23 09:22:38 +00:00
|
|
|
SKIA="$(dirname "$0")/../.."
|
2018-01-22 21:51:55 +00:00
|
|
|
|
|
|
|
go get -u go.skia.org/infra/golden/go/search
|
|
|
|
|
2018-01-23 09:22:38 +00:00
|
|
|
go run "${SKIA}/tools/skqp/make_gmkb.go" "$1" \
|
|
|
|
"${SKIA}/platform_tools/android/apps/skqp/src/main/assets/gmkb"
|
2018-01-22 21:51:55 +00:00
|
|
|
|