File: BUILD.bazel

package info (click to toggle)
golang-github-tink-crypto-tink-go-gcpkms 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: sh: 1,153; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 650 bytes parent folder | download
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
load("@io_bazel_rules_go//go:def.bzl", "nogo")
load("@bazel_gazelle//:def.bzl", "gazelle")

package(default_visibility = ["//:__subpackages__"])

licenses(["notice"])

nogo(
    name = "tink_nogo",
    vet = True,
    visibility = ["//visibility:public"],
)

# gazelle:prefix github.com/tink-crypto/tink-go-gcpkms/v2
# gazelle:exclude proto/*.proto
gazelle(
    name = "gazelle",
    args = [
        "-go_naming_convention=import_alias",
    ],
)

gazelle(
    name = "gazelle-update-repos",
    args = [
        "-from_file=go.mod",
        "-to_macro=deps.bzl%tink_go_gcpkms_dependencies",
        "-prune",
    ],
    command = "update-repos",
)