blob: 7242db625df5b2150ffd291d88c7d0c8b6188a53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#! /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
|