Files
openide/python/services/shared/BUILD.bazel
Ilya.Kazakevich cea3e7d9c0 Python: make python with language level independent from python binary to support conda and other python types.
GitOrigin-RevId: 2752eed732ab6d3e45da38714106700ba2014bd8
2025-06-07 22:05:56 +00:00

24 lines
780 B
Python

### auto-generated section `build intellij.python.community.services.shared` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "shared_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "shared",
module_name = "intellij.python.community.services.shared",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlin-stdlib",
"//python/openapi:community",
"@lib//:jetbrains-annotations",
"//platform/eel-provider",
"//python/python-exec-service/execService.python",
],
runtime_deps = [":shared_resources"]
)
### auto-generated section `build intellij.python.community.services.shared` end