mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
103 lines
2 KiB
Text
103 lines
2 KiB
Text
load("@rules_python//python:defs.bzl", "py_binary")
|
|
load("@py_deps//:requirements.bzl", "requirement")
|
|
load("//pylib:protobuf.bzl", "py_proto_library_typed")
|
|
load("@bazel_skylib//rules:copy_file.bzl", "copy_file")
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
py_proto_library_typed(
|
|
name = "backend_pb2",
|
|
src = "//proto:backend.proto",
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|
|
|
|
py_binary(
|
|
name = "genbackend",
|
|
srcs = [
|
|
"backend_pb2",
|
|
"genbackend.py",
|
|
],
|
|
deps = [
|
|
requirement("black"),
|
|
requirement("stringcase"),
|
|
requirement("protobuf"),
|
|
],
|
|
)
|
|
|
|
genrule(
|
|
name = "rsbackend_gen",
|
|
outs = ["generated.py"],
|
|
cmd = "$(location genbackend) $@",
|
|
tools = ["genbackend"],
|
|
)
|
|
|
|
py_binary(
|
|
name = "genfluent",
|
|
srcs = [
|
|
"genfluent.py",
|
|
],
|
|
deps = [
|
|
requirement("black"),
|
|
requirement("stringcase"),
|
|
],
|
|
)
|
|
|
|
genrule(
|
|
name = "fluent_gen",
|
|
outs = ["fluent.py"],
|
|
cmd = "$(location genfluent) $(location //rslib/i18n:strings.json) $@",
|
|
tools = [
|
|
"genfluent",
|
|
"//rslib/i18n:strings.json",
|
|
],
|
|
)
|
|
|
|
copy_file(
|
|
name = "rsbridge_unix",
|
|
src = "//pylib/rsbridge",
|
|
out = "rsbridge.so",
|
|
)
|
|
|
|
copy_file(
|
|
name = "rsbridge_win",
|
|
src = "//pylib/rsbridge",
|
|
out = "rsbridge.pyd",
|
|
)
|
|
|
|
alias(
|
|
name = "rsbridge",
|
|
actual = selects.with_or({
|
|
(
|
|
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
|
): ":rsbridge_win",
|
|
"//conditions:default": ":rsbridge_unix",
|
|
}),
|
|
)
|
|
|
|
_py_srcs = [
|
|
"genbackend.py",
|
|
"__init__.py",
|
|
]
|
|
|
|
# for format check
|
|
filegroup(
|
|
name = "py_source_files",
|
|
srcs = _py_srcs,
|
|
visibility = [
|
|
"//pylib:__subpackages__",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "_backend",
|
|
srcs = [
|
|
"__init__.py",
|
|
"rsbridge.pyi",
|
|
":backend_pb2",
|
|
":fluent_gen",
|
|
":rsbackend_gen",
|
|
":rsbridge",
|
|
],
|
|
visibility = ["//pylib:__subpackages__"],
|
|
)
|