Hal Canary | 4080305 | 2018-01-22 16:51:55 -0500 | [diff] [blame] | 1 | #! /bin/sh |
| 2 | |
| 3 | # Copyright 2018 Google Inc. |
| 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | # found in the LICENSE file. |
| 6 | |
| 7 | set -e -x |
| 8 | |
Hal Canary | 23fda7a | 2018-01-23 09:22:38 +0000 | [diff] [blame] | 9 | cd "$(dirname "$0")/../.." |
| 10 | |
| 11 | BUILD=out/default |
| 12 | |
| 13 | python tools/git-sync-deps |
| 14 | |
| 15 | bin/gn gen $BUILD |
| 16 | |
| 17 | ninja -C $BUILD list_gms list_gpu_unit_tests |
| 18 | |
| 19 | DIR=platform_tools/android/apps/skqp/src/main/assets/skqp |
| 20 | |
| 21 | mkdir -p $DIR |
| 22 | |
| 23 | $BUILD/list_gms > $DIR/KnownGMs.txt |
| 24 | |
| 25 | $BUILD/list_gpu_unit_tests > $DIR/KnownGpuUnitTests.txt |
Hal Canary | 4080305 | 2018-01-22 16:51:55 -0500 | [diff] [blame] | 26 | |