Home | History | Annotate | Download | only in skqp
      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 
      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
     26 
     27