51aabc94be
Bug: skia:9632 Change-Id: I779fa02cd7227b4d68cc8b0d1c1781473ad0741d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/254499 Commit-Queue: Ben Wagner aka dogben <benjaminwagner@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com> Reviewed-by: Herb Derby <herb@google.com>
21 lines
444 B
Bash
Executable File
21 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2019 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
|