blob: 7242db625df5b2150ffd291d88c7d0c8b6188a53 [file] [log] [blame]
Hal Canary40803052018-01-22 16:51:55 -05001#! /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
7set -e -x
8
Hal Canary23fda7a2018-01-23 09:22:38 +00009cd "$(dirname "$0")/../.."
10
11BUILD=out/default
12
13python tools/git-sync-deps
14
15bin/gn gen $BUILD
16
17ninja -C $BUILD list_gms list_gpu_unit_tests
18
19DIR=platform_tools/android/apps/skqp/src/main/assets/skqp
20
21mkdir -p $DIR
22
23$BUILD/list_gms > $DIR/KnownGMs.txt
24
25$BUILD/list_gpu_unit_tests > $DIR/KnownGpuUnitTests.txt
Hal Canary40803052018-01-22 16:51:55 -050026