Files
codeql/rust/codegen/BUILD.bazel
2024-08-30 13:05:46 +02:00

16 lines
358 B
Python

load("@bazel_skylib//rules:native_binary.bzl", "native_binary")
native_binary(
name = "codegen",
src = "//misc/codegen",
out = "codegen",
args = [
"--configuration-file=$(location //rust:codegen-conf)",
],
data = [
"//rust:codegen-conf",
"//rust:schema",
],
visibility = ["//rust:__subpackages__"],
)