mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
18 lines
363 B
Python
18 lines
363 B
Python
_args = [
|
|
"//rust/ast-generator",
|
|
"//rust/ast-generator:manifest",
|
|
"//misc/codegen",
|
|
"//rust:codegen-conf",
|
|
]
|
|
|
|
sh_binary(
|
|
name = "codegen",
|
|
srcs = ["codegen.sh"],
|
|
args = ["$(rlocationpath %s)" % a for a in _args],
|
|
data = _args,
|
|
visibility = ["//rust:__subpackages__"],
|
|
deps = [
|
|
"//misc/bazel:sh_runfiles",
|
|
],
|
|
)
|