mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
33 lines
733 B
Python
33 lines
733 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "atomic",
|
|
srcs = [
|
|
"bool.go",
|
|
"bool_ext.go",
|
|
"doc.go",
|
|
"duration.go",
|
|
"duration_ext.go",
|
|
"error.go",
|
|
"error_ext.go",
|
|
"float64.go",
|
|
"float64_ext.go",
|
|
"gen.go",
|
|
"int32.go",
|
|
"int64.go",
|
|
"nocmp.go",
|
|
"string.go",
|
|
"string_ext.go",
|
|
"time.go",
|
|
"time_ext.go",
|
|
"uint32.go",
|
|
"uint64.go",
|
|
"uintptr.go",
|
|
"unsafe_pointer.go",
|
|
"value.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/go.uber.org/atomic",
|
|
importpath = "go.uber.org/atomic",
|
|
visibility = ["//visibility:public"],
|
|
)
|