diff options
author | Adin Scannell <ascannell@google.com> | 2020-08-06 12:08:12 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-06 12:10:49 -0700 |
commit | 90021e775a6e8059ea4f4262a16c4f962d3b9732 (patch) | |
tree | 836255772e78b9b2a623eecd336f19b2a5297319 /tools/go_marshal | |
parent | b918d97850075cc353abf7b590b4e807e2984ab0 (diff) |
Add bzl_library rules for .bzl files without one.
PiperOrigin-RevId: 325280924
Diffstat (limited to 'tools/go_marshal')
-rw-r--r-- | tools/go_marshal/BUILD | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/go_marshal/BUILD b/tools/go_marshal/BUILD index be49cf9c8..f79defea7 100644 --- a/tools/go_marshal/BUILD +++ b/tools/go_marshal/BUILD @@ -1,4 +1,4 @@ -load("//tools:defs.bzl", "go_binary") +load("//tools:defs.bzl", "bzl_library", "go_binary") licenses(["notice"]) @@ -17,3 +17,9 @@ config_setting( name = "marshal_config_verbose", values = {"define": "gomarshal=verbose"}, ) + +bzl_library( + name = "defs_bzl", + srcs = ["defs.bzl"], + visibility = ["//visibility:private"], +) |