subdirectory paths under vendor/ The intent is to make use of the golang 1.6 VENDOR extension to build. As seen, the bare example does not correctly build using bazel in this mode.
8 lines
193 B
Python
8 lines
193 B
Python
load("@bazel_tools//tools/build_rules/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "bare",
|
|
srcs = [ "bazel-example-golang-bare/bare.go" ],
|
|
visibility = ["//visibility:public"],
|
|
)
|