23fda7ad07
- tools/skqp/generate_gn_args.sh - single script to generate configuration used to build SkQP. - tools/skqp/make_model.sh - script to execute make_gmkb.go and put the results in the correct place. - tools/skqp/{up,down}load_directory_contents.sh - scripts to move large assets into the cloud and retrieve them. - tools/skqp/gm_runner.cpp - treat missing text files as empty. - tools/skqp/make_apk.sh - make use of generate_gn_args.sh. - tools/skqp/make_{model,known_tests}.sh - better error handling, and also stop calling `git add`. Change-Id: Ib1803b4d68e63945f2c47f8eb6cb96375d24e3be Reviewed-on: https://skia-review.googlesource.com/98842 Reviewed-by: Hal Canary <halcanary@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
27 lines
463 B
Bash
Executable File
27 lines
463 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Copyright 2018 Google Inc.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -e -x
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
BUILD=out/default
|
|
|
|
python tools/git-sync-deps
|
|
|
|
bin/gn gen $BUILD
|
|
|
|
ninja -C $BUILD list_gms list_gpu_unit_tests
|
|
|
|
DIR=platform_tools/android/apps/skqp/src/main/assets/skqp
|
|
|
|
mkdir -p $DIR
|
|
|
|
$BUILD/list_gms > $DIR/KnownGMs.txt
|
|
|
|
$BUILD/list_gpu_unit_tests > $DIR/KnownGpuUnitTests.txt
|
|
|