mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-10 15:09:38 -05:00
22 lines
600 B
Python
22 lines
600 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "etcdio",
|
|
srcs = [
|
|
"etcdio.go",
|
|
"setioprio_cross.go",
|
|
"setioprio_linux.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/bootstrapper/internal/etcdio",
|
|
visibility = ["//bootstrapper:__subpackages__"],
|
|
deps = select({
|
|
"@io_bazel_rules_go//go/platform:android": [
|
|
"@org_golang_x_sys//unix",
|
|
],
|
|
"@io_bazel_rules_go//go/platform:linux": [
|
|
"@org_golang_x_sys//unix",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|