21 lines
457 B
Bash
Executable File
21 lines
457 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2020 Google LLC
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# This assumes it is being run inside a docker container with the following
|
|
# mounts:
|
|
# /SRC: Swarming start dir
|
|
# /OUT: output directory for gn and ninja
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export PATH="/SRC/recipe_bundle/depot_tools:${PATH}"
|
|
|
|
cd /SRC/skia
|
|
./bin/fetch-gn
|
|
./bin/gn gen /OUT "--args=$1"
|
|
ninja -C /OUT nanobench dm
|