Files
local
submodule
vendor
github.com
laramiel
bazel-example-golang-bare
bazel-example-golang-remote
BUILD
with_vendor
.gitignore
.gitmodules
BUILD
README.md
WORKSPACE
bare.go
hello.go
remote.go
lotr/vendor/github.com/laramiel/BUILD
Laramie Leavitt dad6f57d6d Update WORKSPACE / BUILD to work with bazel at HEAD.
Uses external rules_go github repository.
2016-03-21 16:56:03 -07:00

8 lines
179 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "bare",
srcs = ["bazel-example-golang-bare/bare.go"],
visibility = ["//visibility:public"],
)