Update WORKSPACE / BUILD to work with bazel at HEAD.

Uses external rules_go github repository.
This commit is contained in:
Laramie Leavitt
2016-03-21 16:56:03 -07:00
parent f189432d24
commit dad6f57d6d
11 changed files with 39 additions and 42 deletions

View File

@ -1,4 +1,4 @@
load("@bazel_tools//tools/build_rules/go:def.bzl", "go_prefix", "go_binary")
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
package(
default_visibility = ["//visibility:public"],
@ -16,9 +16,9 @@ package(
#)
go_binary(
name ="remote",
srcs = [ "remote.go" ],
deps = [
"//vendor/github.com/laramiel/bazel-example-golang-remote:remote",
],
name = "remote",
srcs = ["remote.go"],
deps = [
"//vendor/github.com/laramiel/bazel-example-golang-remote:remote",
],
)