mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
138e98fb7d
This allows for runsc to be able to use DriverVersion without having to depend on the entirety of nvproxy. PiperOrigin-RevId: 733912696
27 lines
621 B
Python
27 lines
621 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "parser",
|
|
srcs = [
|
|
"auxiliary_files.go",
|
|
"clang_config.go",
|
|
"json_definitions.go",
|
|
"runner.go",
|
|
"sources.go",
|
|
],
|
|
visibility = [
|
|
"//pkg/sentry/devices/nvproxy:__subpackages__",
|
|
"//tools/nvidia_driver_differ:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//pkg/sentry/devices/nvproxy",
|
|
"//pkg/sentry/devices/nvproxy/nvconf",
|
|
"@com_github_google_go_cmp//cmp:go_default_library",
|
|
],
|
|
)
|