Gazelle build file generator
Gazelle is a build file generator for Go projects. It can create new
BUILD.bazel files for a project that follows "go build" conventions, and it
can update existing build files to include new files and options. Gazelle can
be invoked directly in a project workspace, or it can be run on an external
repository during the build as part of the go_repository
rule.
Gazelle is under active development. Its interface and the rules it generates
may change.
Contents
Setup
Running Gazelle with Bazel
To use Gazelle in a new project, add the following to the BUILD or BUILD.bazel
file in the root directory of your repository:
load("@io_bazel_rules_go//go:def.bzl", "gazelle", "go_prefix")
go_prefix("github.com/my/project")
gazelle(name = "gazelle")
Replace the string in go_prefix
with the portion of your import path that
corresponds to your repository. See
go_prefix
documentation.
After adding those rules, run the command below:
bazel run //:gazelle
This will generate new BUILD.bazel files for your project. You can run the same
command in the future to update existing BUILD.bazel files to include new source
files or options.
Running Gazelle separately
If you have a Go SDK installed, you can install Gazelle in your GOPATH
with
the command below:
go get -u github.com/bazelbuild/rules_go/go/tools/gazelle/gazelle
Make sure to re-run this command to upgrade Gazelle whenever you upgrade
rules_go in your repository.
To generate BUILD.bazel files in a new project, run the command below, replacing
the prefix with the portion of your import path that corresponds to your
repository.
gazelle -go_prefix github.com/my/project
The prefix only needs to be specified the first time you run Gazelle. To update
existing BUILD.bazel files, you can just run gazelle
without arguments.
Usage
Command line
gazelle <command> [flags...] [package-dirs...]
The first argument to Gazelle may be one of the commands below. If no command
is specified, update
is assumed.
Commands |
update |
Gazelle will create new build files and update existing build files.
New rules may be created. Files, dependencies, and options may be added or
removed from existing rules. |
fix |
In addition to the changes made in update , Gazelle will
remove deprecated usage of the Go rules, analogous to go fix .
For example, cgo_library will be consolidated with
go_library . This may delete rules, so it's not turned on by
default. |
Gazelle accepts a list Go of package directories to process. If no directories
are given, it defaults to the current directory when run on the command line or
the repository root when run with Bazel. It recursively traverses
subdirectories.
Gazelle accepts the following flags:
Flags |
-build_file_name file1,file2... |
Comma-separated list of file names. Defaults to
BUILD.bazel,BUILD
Gazelle recognizes these files as Bazel build files. New files will
use the first name in this list. Use this if your project contains
non-Bazel files named BUILD (or build on
case-insensitive file systems).
|
-build_tags tag1,tag2 |
List of Go build tags Gazelle will consider to be true.
Gazelle applies build constraints when generating Go rules. It
assumes certain tags are true on certain platforms (for example,
amd64,linux ). It assumes all Go release tags are true
(for example, go1.8 ). It considers other tags to be false
(for example, ignore ). This flag overrides that
behavior.
|
-external external|vendored |
Determines how Gazelle resolves import paths. Defaults to
external .
Gazelle translates Go import paths to Bazel labels when resolving
library dependencies. Import paths that start with the
go_prefix are resolved to local labels, but other imports
are resolved based on this mode. In external mode, paths
are resolved using an external dependency in the WORKSPACE
file (Gazelle does not create or maintain these dependencies yet). In
vendored mode, paths are resolved to a library in the
vendor directory.
|
-go_prefix github.com/my/project |
A prefix of import paths for libraries in the repository that
corresponds to the repository root. Gazelle infers this from the
go_prefix rule in the root BUILD.bazel file,
if it exists. If not, this option is mandatory.
This prefix is used to determine whether an import path refers to
a library in the current repository or an external dependency.
|
-repo_root dir |
The root directory of the repository. Gazelle normally infers this
to be the directory containing the WORKSPACE file.
Gazelle will not process packages outside this directory.
|
-known_import example.com |
Skips import path resolution for a known domain. May be repeated.
When Gazelle resolves an import path to an external dependency, it
attempts to discover the remote repository root over HTTP. Gazelle skips
this discovery step for a few well-known domains with predictable
structure, like golang.org and github.com. This flag specifies
additional domains to skip, which is useful in situations where the
lookup would fail for some reason.
|
-mode fix|print|diff |
Method for emitting merged build files. Defaults to
fix .
In fix mode, Gazelle writes generated and merged files
to disk. In print mode, it prints them to stdout. In
diff mode, it prints a unified diff.
|
Bazel rule
When Gazelle is run by Bazel, most of the flags above can be encoded in the
gazelle
macro. For example:
load("@io_bazel_rules_go//go:def.bzl", "gazelle", "go_prefix")
go_prefix("github.com/my/project")
gazelle(
name = "gazelle",
command = "fix",
external = "vendored",
build_tags = [
"integration",
"debug",
],
args = [
"-build_file_name",
"BUILD,BUILD.bazel",
],
)
Directives
Gazelle supports several directives, written as comments in build files.
# gazelle:ignore
: may be written at the top level of any build file. Gazelle
will not update files with this comment.
# gazelle:exclude file-or-directory
: may be written at the top level of any
build file. Gazelle will ignore the named file in the build file's
directory. If it is a source file, Gazelle won't include it in any rules. If
it is a directory, Gazelle will not recurse into it. This directive may be
repeated to exclude multiple files, one per line.
# keep
: may be written before a rule to prevent the rule from being updated
or before a source file, dependency, or flag to prevent it from being removed.
Example:
Suppose you have a library that includes a generated .go file. Gazelle won't
know what imports to resolve, so you may need to add dependencies manually with
# keep
comments.
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@com_github_example_gen//:gen.bzl", "gen_go_file")
gen_go_file(
name = "magic",
srcs = ["magic.go.in"],
outs = ["magic.go"],
)
go_library(
name = "go_default_library",
srcs = ["magic.go"],
visibility = ["//visibility:public"],
deps = [
"@com_github_example_gen//:go_default_library", # keep
],
)