1#!/bin/bash
2# Copyright 2019 Google LLC
3#
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7# This assumes it is being run inside a docker container with the following
8# mounts:
9#  /SRC: Swarming start dir
10#  /OUT: output directory for gn and ninja
11
12set -e
13set -x
14
15export PATH="/SRC/recipe_bundle/depot_tools:${PATH}"
16
17cd /SRC/skia
18./bin/fetch-gn
19./bin/gn gen /OUT "--args=$1"
20ninja -C /OUT
21