Merge pull request #39393 from ixdy/gazel-srcs

Automatic merge from submit-queue

bazel: update to gazel v13 and create sources rules throughout tree

**What this PR does / why we need it**: creates filegroup rules using https://github.com/mikedanese/gazel/pull/20, which we can then use in creating release tarballs

**Special notes for your reviewer**: this obviously should not be merged before https://github.com/mikedanese/gazel/pull/20 is merged and tagged; this is more to give you an idea of what the output looks like. The verification tests should fail this PR in any case.

**Release note**:

```release-note
NONE
```
This commit is contained in:
Kubernetes Submit Queue 2017-01-05 20:43:22 -08:00 committed by GitHub
commit 4c46daf16c
1 changed files with 13 additions and 0 deletions

View File

@ -75,3 +75,16 @@ go_test(
"//vendor:github.com/rackspace/gophercloud/openstack/compute/v2/servers",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)