...

Text file src/github.com/grpc-ecosystem/grpc-gateway/utilities/BUILD.bazel

Documentation: github.com/grpc-ecosystem/grpc-gateway/utilities

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3package(default_visibility = ["//visibility:public"])
     4
     5go_library(
     6    name = "go_default_library",
     7    srcs = [
     8        "doc.go",
     9        "pattern.go",
    10        "readerfactory.go",
    11        "trie.go",
    12    ],
    13    importpath = "github.com/grpc-ecosystem/grpc-gateway/utilities",
    14)
    15
    16go_test(
    17    name = "go_default_test",
    18    size = "small",
    19    srcs = ["trie_test.go"],
    20    embed = [":go_default_library"],
    21)

View as plain text