Files
codeql/swift/codegen/BUILD.bazel
2023-02-27 09:46:48 +01:00

16 lines
362 B
Python

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