diff options
Diffstat (limited to 'pkg/sync/BUILD')
-rw-r--r-- | pkg/sync/BUILD | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/pkg/sync/BUILD b/pkg/sync/BUILD deleted file mode 100644 index 68535c3b1..000000000 --- a/pkg/sync/BUILD +++ /dev/null @@ -1,57 +0,0 @@ -load("//tools:defs.bzl", "go_library", "go_test") -load("//tools/go_generics:defs.bzl", "go_template") - -package( - default_visibility = ["//:sandbox"], - licenses = ["notice"], -) - -exports_files(["LICENSE"]) - -go_template( - name = "generic_atomicptr", - srcs = ["atomicptr_unsafe.go"], - types = [ - "Value", - ], -) - -go_template( - name = "generic_seqatomic", - srcs = ["seqatomic_unsafe.go"], - types = [ - "Value", - ], - deps = [ - ":sync", - ], -) - -go_library( - name = "sync", - srcs = [ - "aliases.go", - "memmove_unsafe.go", - "mutex_unsafe.go", - "nocopy.go", - "norace_unsafe.go", - "race_unsafe.go", - "rwmutex_unsafe.go", - "seqcount.go", - "spin_unsafe.go", - "sync.go", - ], - marshal = False, - stateify = False, -) - -go_test( - name = "sync_test", - size = "small", - srcs = [ - "mutex_test.go", - "rwmutex_test.go", - "seqcount_test.go", - ], - library = ":sync", -) |