sourcegraph/internal/httpserver/BUILD.bazel

20 lines
501 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "httpserver",
srcs = [
"handler.go",
"listener.go",
"server.go",
],
importpath = "github.com/sourcegraph/sourcegraph/internal/httpserver",
tags = [TAG_PLATFORM_SOURCE],
visibility = ["//:__subpackages__"],
deps = [
"//internal/env",
"//internal/goroutine",
"@com_github_gorilla_mux//:mux",
"@com_github_inconshreveable_log15//:log15",
],
)