blob: 8eb2d747bcc2b6f8845275c99b4cadd98773855c [file] [log] [blame]
Nan Zhang17f27672018-12-12 16:01:49 -08001#!/bin/bash
2
Patrice Arruda1e2cad92020-10-12 22:58:27 +00003# Generates the golang source file of metrics.proto protobuf file.
4
5set -e
6
7function die() { echo "ERROR: $1" >&2; exit 1; }
8
9readonly error_msg="Maybe you need to run 'lunch aosp_arm-eng && m aprotoc blueprint_tools'?"
10
11if ! hash aprotoc &>/dev/null; then
12 die "could not find aprotoc. ${error_msg}"
13fi
14
15if ! aprotoc --go_out=paths=source_relative:. metrics.proto; then
16 die "build failed. ${error_msg}"
17fi