blob: 092254281114cc8891619ee414f8ff50ee17f889 [file] [log] [blame]
Serge Bazanski424e2012023-02-15 23:31:49 +01001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "reflection",
5 srcs = [
6 "reflection.go",
7 "schema.go",
8 ],
9 importpath = "source.monogon.dev/cloud/bmaas/bmdb/reflection",
10 visibility = ["//visibility:public"],
11 deps = [
Serge Bazanski10b21542023-04-13 12:12:05 +020012 "//cloud/bmaas/server/api",
Serge Bazanski424e2012023-02-15 23:31:49 +010013 "@com_github_google_uuid//:uuid",
14 "@com_github_iancoleman_strcase//:strcase",
15 "@io_k8s_klog_v2//:klog",
Serge Bazanski10b21542023-04-13 12:12:05 +020016 "@org_golang_google_protobuf//encoding/prototext",
17 "@org_golang_google_protobuf//proto",
Serge Bazanski3c6306b2023-09-19 11:48:44 +000018 "@org_golang_google_protobuf//reflect/protopath",
19 "@org_golang_google_protobuf//reflect/protorange",
Serge Bazanski10b21542023-04-13 12:12:05 +020020 "@org_golang_google_protobuf//reflect/protoreflect",
Serge Bazanski424e2012023-02-15 23:31:49 +010021 ],
22)