xref: /aosp_15_r20/external/skia/infra/bots/recipe_modules/build/resources/docker-compile.sh (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
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