mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
b78f2ee7c4
PiperOrigin-RevId: 702733881
61 lines
1.4 KiB
Python
61 lines
1.4 KiB
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
default_visibility = ["//:sandbox"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "sync",
|
|
srcs = [
|
|
"aliases.go",
|
|
"checklocks_off_unsafe.go",
|
|
"checklocks_on_unsafe.go",
|
|
"fence.go",
|
|
"fence_amd64.s",
|
|
"fence_arm64.s",
|
|
"gate_unsafe.go",
|
|
"goyield_go113_unsafe.go",
|
|
"goyield_unsafe.go",
|
|
"mutex_unsafe.go",
|
|
"nocopy.go",
|
|
"norace_unsafe.go",
|
|
"race_amd64.s",
|
|
"race_arm64.s",
|
|
"race_unsafe.go",
|
|
"runtime.go",
|
|
"runtime_amd64.go",
|
|
"runtime_constants.go",
|
|
"runtime_exectracer2.go",
|
|
"runtime_go121_unsafe.go",
|
|
"runtime_go124_unsafe.go",
|
|
"runtime_not_go121_unsafe.go",
|
|
"runtime_other.go",
|
|
"runtime_spinning_amd64.s",
|
|
"runtime_spinning_other.s",
|
|
"runtime_unsafe.go",
|
|
"rwmutex_unsafe.go",
|
|
"seqcount.go",
|
|
"sync.go",
|
|
],
|
|
marshal = False,
|
|
stateify = False,
|
|
visibility = ["//:sandbox"],
|
|
deps = [
|
|
"//pkg/gohacks",
|
|
"//pkg/goid",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "sync_test",
|
|
size = "small",
|
|
srcs = [
|
|
"gate_test.go",
|
|
"rwmutex_test.go",
|
|
"seqcount_test.go",
|
|
],
|
|
library = ":sync",
|
|
)
|