• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Copyright 2021 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
7if [[ "$@" == *SKIA_SKIP_LINKING* ]]; then
8  # The archive file is listed as the second argument to this script, and we must make sure
9  # it exists or Bazel will fail a validation step.
10  touch $2
11  exit 0
12fi
13
14external/clang_linux_amd64/bin/llvm-ar $@
15