1#!/usr/bin/env bash 2# Copyright 2024 Google LLC 3 4set -e 5 6BAZEL_ARGS=() 7 8# Bazel-level configuration 9# 10# If editing these flags, make sure `local-build.sh` flags are updated. 11BAZEL_ARGS+=("-c=\"opt\"") 12BAZEL_ARGS+=("-copt=\"fpic\"") 13 14# User-specified Bazel arguments go last to allow overridding defaults 15BAZEL_ARGS+=($@) 16 17# Build all targets 18bazel build :all 19