2024-07-24 10:47:55 -07:00
|
|
|
load("//tools:defs.bzl", "go_library")
|
|
|
|
|
|
|
|
|
|
package(
|
|
|
|
|
default_applicable_licenses = ["//:license"],
|
|
|
|
|
licenses = ["notice"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
|
name = "parser",
|
2024-07-24 13:32:41 -07:00
|
|
|
srcs = [
|
2024-07-30 14:18:24 -07:00
|
|
|
"auxiliary_files.go",
|
2024-07-24 13:32:41 -07:00
|
|
|
"clang_config.go",
|
|
|
|
|
"json_definitions.go",
|
2024-07-30 14:18:24 -07:00
|
|
|
"runner.go",
|
2024-07-24 14:00:55 -07:00
|
|
|
"sources.go",
|
2024-07-24 13:32:41 -07:00
|
|
|
],
|
2024-07-30 16:42:45 -07:00
|
|
|
visibility = [
|
|
|
|
|
"//pkg/sentry/devices/nvproxy:__subpackages__",
|
|
|
|
|
"//tools/nvidia_driver_differ:__subpackages__",
|
|
|
|
|
],
|
2024-07-30 14:18:24 -07:00
|
|
|
deps = [
|
|
|
|
|
"//pkg/sentry/devices/nvproxy",
|
2025-03-05 16:39:43 -08:00
|
|
|
"//pkg/sentry/devices/nvproxy/nvconf",
|
2024-07-30 14:18:24 -07:00
|
|
|
"@com_github_google_go_cmp//cmp:go_default_library",
|
|
|
|
|
],
|
2024-07-24 10:47:55 -07:00
|
|
|
)
|