mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
35 lines
771 B
Python
35 lines
771 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "test",
|
|
srcs = [
|
|
"aliases.go",
|
|
"alignment.go",
|
|
"anon.go",
|
|
"atomics.go",
|
|
"basics.go",
|
|
"branches.go",
|
|
"closures.go",
|
|
"defer.go",
|
|
"globals.go",
|
|
"incompat.go",
|
|
"inferred.go",
|
|
"locker.go",
|
|
"methods.go",
|
|
"parameters.go",
|
|
"return.go",
|
|
"rwmutex.go",
|
|
"test.go",
|
|
],
|
|
# This ensures that there are no dependencies, since we want to explicitly
|
|
# control expected failures for analysis.
|
|
marshal = False,
|
|
stateify = False,
|
|
deps = ["//tools/checklocks/test/crosspkg"],
|
|
)
|