mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
36 lines
840 B
Python
36 lines
840 B
Python
load("@bazel_skylib//rules:native_binary.bzl", "native_binary")
|
|
load("@rules_shell//shell:sh_binary.bzl", "sh_binary")
|
|
|
|
_args = [
|
|
"//rust/ast-generator",
|
|
"//rust/ast-generator:rust.ungram",
|
|
"//rust/ast-generator:Cargo.toml",
|
|
"//misc/codegen",
|
|
"//rust:codegen-conf",
|
|
"@rules_rust//tools/rustfmt:upstream_rustfmt",
|
|
]
|
|
|
|
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",
|
|
],
|
|
)
|
|
|
|
native_binary(
|
|
name = "py",
|
|
src = "//misc/codegen",
|
|
out = "codegen",
|
|
args = [
|
|
"--configuration-file=$(location //rust:codegen-conf)",
|
|
],
|
|
data = [
|
|
"//rust:codegen-conf",
|
|
],
|
|
visibility = ["//rust:__subpackages__"],
|
|
)
|