forked from GoogleCloudPlatform/runtimes-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
26 lines (18 loc) · 793 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Exclude rewriting docgen/scripts path
# gazelle:exclude docgen/scripts
# Runtimes Common: A collections of scripts for cloud languages runtimes team
# to manage continuous integration for silver languages.
# This code is compiled into a docker image that is publicly available. If you're
# interested in using this code, use the docker image, not the source.
package(default_visibility = ["//visibility:private"])
licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
load("@io_bazel_rules_go//go:def.bzl", "go_prefix")
go_prefix("github.com/GoogleCloudPlatform/runtimes-common")
load("@bazel_gazelle//:def.bzl", "gazelle")
gazelle(
name = "gazelle",
build_tags = ["go1.7"],
external = "vendored",
prefix = "github.com/GoogleCloudPlatform/runtimes-common",
)