aboutsummaryrefslogtreecommitdiff
path: root/docs/go/extras/extras.bzl
blob: e58395ae2fa3f9ea406aa4df72c45691b7b0e229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
  [gazelle rule]: https://github.com/bazelbuild/bazel-gazelle#bazel-rule
  [golang/mock]: https://github.com/golang/mock
  [core go rules]: /docs/go/core/rules.md

# Extra rules

This is a collection of helper rules. These are not core to building a go binary, but are supplied
to make life a little easier.

## Contents
- [gazelle](#gazelle)
- [gomock](#gomock)
- [go_embed_data](#go_embed_data)

## Additional resources
- [gazelle rule]
- [golang/mock]
- [core go rules]

------------------------------------------------------------------------

gazelle
-------

This rule has moved. See [gazelle rule] in the Gazelle repository.

"""

load("//extras:gomock.bzl", _gomock = "gomock")
load("//extras:embed_data.bzl", _go_embed_data = "go_embed_data")

gomock = _gomock

go_embed_data = _go_embed_data