Files
codeql/rust/codegen/BUILD.bazel

16 lines
361 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.py",
],
visibility = ["//rust:__subpackages__"],
)