mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:21:50 +00:00
19 lines
498 B
Python
19 lines
498 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//dev:go_defs.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "diskusage",
|
|
srcs = ["diskusage.go"],
|
|
importpath = "github.com/sourcegraph/sourcegraph/internal/diskusage",
|
|
tags = [TAG_PLATFORM_SOURCE],
|
|
visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
go_test(
|
|
name = "diskusage_test",
|
|
srcs = ["diskusage_test.go"],
|
|
embed = [":diskusage"],
|
|
tags = [TAG_PLATFORM_SOURCE],
|
|
deps = ["@com_github_stretchr_testify//require"],
|
|
)
|