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-ninja 19./bin/fetch-gn 20./bin/gn gen /OUT "--args=$1" 21./third_party/ninja/ninja -C /OUT 22 23chmod -R 0777 /OUT/* 24