mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
16 lines
361 B
Python
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__"],
|
|
)
|