Files
openide/python/installer/BUILD.bazel
Vladimir Krivosheev 9f425c84ea IJ-MR-175479 IJ-CR-146078 IJPL-209476 guava as product module (part 2)
GitOrigin-RevId: 22ee846c39d44cd481ad55d11889ff43ad3b389a
2025-10-04 19:03:47 +00:00

27 lines
852 B
Python

### auto-generated section `build intellij.python.community.impl.installer` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
resourcegroup(
name = "installer_resources",
srcs = 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", "src/**/*.form"], allow_empty = True),
resources = [":installer_resources"],
deps = [
"@lib//:kotlin-stdlib",
"//python/openapi:community",
"//python/python-sdk:sdk",
"//platform/core-api:core",
"//platform/util",
"//platform/platform-api:ide",
"//platform/statistics",
"//libraries/guava",
]
)
### auto-generated section `build intellij.python.community.impl.installer` end