Files
codeql/swift/codegen/BUILD.bazel
2023-06-30 13:07:04 +02:00

16 lines
362 B
Python

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