Files
lotr/with_vendor/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

25 lines
487 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_binary")
package(
default_visibility = ["//visibility:public"],
)
# BAZEL does not work correctly with BUILD files rooted elsewhere than
# the actual code directory.
#
#go_binary(
# name ="bare",
# srcs = [ "bare.go" ],
# deps = [
# "//vendor/github.com/laramiel:bare",
# ],
#)
go_binary(
name = "remote",
srcs = ["remote.go"],
deps = [
"//vendor/github.com/laramiel/bazel-example-golang-remote:remote",
],
)