├── .gitignore ├── .gitmodules ├── BUILD ├── README.md ├── WORKSPACE ├── bare.go ├── hello.go ├── local ├── BUILD └── local.go ├── remote.go ├── submodule ├── BUILD ├── bare.go ├── remote.go └── src │ └── BUILD ├── vendor └── github.com │ └── laramiel │ └── BUILD └── with_vendor ├── BUILD ├── bare.go └── remote.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/BUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/WORKSPACE -------------------------------------------------------------------------------- /bare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/bare.go -------------------------------------------------------------------------------- /hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/hello.go -------------------------------------------------------------------------------- /local/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/local/BUILD -------------------------------------------------------------------------------- /local/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/local/local.go -------------------------------------------------------------------------------- /remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/remote.go -------------------------------------------------------------------------------- /submodule/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/submodule/BUILD -------------------------------------------------------------------------------- /submodule/bare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/submodule/bare.go -------------------------------------------------------------------------------- /submodule/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/submodule/remote.go -------------------------------------------------------------------------------- /submodule/src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/submodule/src/BUILD -------------------------------------------------------------------------------- /vendor/github.com/laramiel/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/vendor/github.com/laramiel/BUILD -------------------------------------------------------------------------------- /with_vendor/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/with_vendor/BUILD -------------------------------------------------------------------------------- /with_vendor/bare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/with_vendor/bare.go -------------------------------------------------------------------------------- /with_vendor/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laramiel/bazel-example-golang/HEAD/with_vendor/remote.go --------------------------------------------------------------------------------