mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
0e2f1b7abd
Because the abi will depend on the core types for marshalling (usermem, context, safemem, safecopy), these need to be flattened from the sentry directory. These packages contain no sentry-specific details. PiperOrigin-RevId: 291811289
14 lines
233 B
Python
14 lines
233 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(licenses = ["notice"])
|
|
|
|
go_library(
|
|
name = "context",
|
|
srcs = ["context.go"],
|
|
visibility = ["//:sandbox"],
|
|
deps = [
|
|
"//pkg/amutex",
|
|
"//pkg/log",
|
|
],
|
|
)
|