Files
Vladimir Krivosheev e9f6e4644d update bazel files
GitOrigin-RevId: c332387fc13f74305d2440f3c738be00fa0ef25a
2025-02-07 10:05:46 +00:00

21 lines
707 B
Python

### auto-generated section `build intellij.python.community.communityOnly` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "community-communityOnly_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "community-communityOnly",
module_name = "intellij.python.community.communityOnly",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlin-stdlib",
"//python:python-community-impl",
],
runtime_deps = [":community-communityOnly_resources"]
)
### auto-generated section `build intellij.python.community.communityOnly` end