Files
openide/python/installer/BUILD.bazel
Vladimir Krivosheev 6f8ff07ccc simplify bazel labels (another step towards using simple names that reflect directory structure)
GitOrigin-RevId: 12bfb2d0fa315d87c7a4ade363d0f834cf324b71
2025-05-08 16:58:30 +00:00

27 lines
834 B
Python

### auto-generated section `build intellij.python.community.impl.installer` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "installer_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "installer",
module_name = "intellij.python.community.impl.installer",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlin-stdlib",
"//python/openapi:community",
"//python/python-sdk:sdk",
"//platform/core-api:core",
"//platform/util",
"//platform/platform-api:ide",
"//platform/statistics",
"@lib//:guava",
],
runtime_deps = [":installer_resources"]
)
### auto-generated section `build intellij.python.community.impl.installer` end