Add references to remote and bare repositories.

This commit is contained in:
Laramie Leavitt
2016-03-02 01:35:30 -08:00
parent e3ebf6d71e
commit 96b5352755
5 changed files with 68 additions and 4 deletions

22
BUILD
View File

@ -4,10 +4,28 @@ package(
default_visibility = ["//visibility:public"],
)
go_prefix("github.com/lar/bazel-example-golang")
go_prefix("github.com/laramiel/bazel-example-golang")
go_binary(
name ="hello",
srcs = [ "hello.go" ],
deps = [ "//local" ],
deps = [
"//local",
],
)
go_binary(
name ="remote",
srcs = [ "remote.go" ],
deps = [
"@remote//:remote",
],
)
go_binary(
name ="bare",
srcs = [ "bare.go" ],
deps = [
"@bare//:bare",
],
)