Files
openide/python/installer/BUILD.bazel
Vladimir Krivosheev b8245e1370 IJ-CR-146078 update bazel files
GitOrigin-RevId: 3bcfd10f71c84283bded464e142ead99edc6a278
2025-02-02 15:20:11 +00:00

27 lines
879 B
Python

### auto-generated section `build intellij.python.community.impl.installer` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "community-impl-installer_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "community-impl-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 = [":community-impl-installer_resources"]
)
### auto-generated section `build intellij.python.community.impl.installer` end