File: BUILD.bazel

package info (click to toggle)
golang-github-grpc-ecosystem-grpc-gateway.v2 2.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 6,148 kB
  • sloc: javascript: 352; makefile: 136; sh: 26
file content (31 lines) | stat: -rw-r--r-- 650 bytes parent folder | download | duplicates (3)
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", "go_library", "go_test")

package(default_visibility = ["//visibility:public"])

go_library(
    name = "utilities",
    srcs = [
        "doc.go",
        "pattern.go",
        "readerfactory.go",
        "string_array_flag.go",
        "trie.go",
    ],
    importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/utilities",
)

go_test(
    name = "utilities_test",
    size = "small",
    srcs = [
        "string_array_flag_test.go",
        "trie_test.go",
    ],
    deps = [":utilities"],
)

alias(
    name = "go_default_library",
    actual = ":utilities",
    visibility = ["//visibility:public"],
)