mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Previously, we were using 8.0.0rc1. In particular, this upgrade means we need to explicitly import more rules, as they've been moved out of the core bazel repo.
15 lines
315 B
Python
15 lines
315 B
Python
load("@rules_python//python:defs.bzl", "py_binary")
|
|
|
|
py_binary(
|
|
name = "codegen",
|
|
srcs = ["codegen.py"],
|
|
data = [
|
|
"//misc/codegen/templates:cpp",
|
|
"//misc/codegen/templates:trap",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//misc/codegen/generators",
|
|
],
|
|
)
|