blob: 2aa7b09e120510e8405fa684a8eccfcf91dc808f [file] [log] [blame] [edit]
load("@rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "test-service_lib",
srcs = ["main.go"],
importpath = "go.skia.org/infra/test-service/go/test-service",
visibility = ["//visibility:private"],
deps = [
"//go/common",
"//go/httputils",
"//go/sklog",
"//go/sklog/structuredlogging",
"//go/util",
"@com_github_go_chi_chi_v5//:chi",
],
)
go_binary(
name = "test-service",
embed = [":test-service_lib"],
visibility = ["//visibility:public"],
)