Files
openide/platform/pluginManager/backend/BUILD.bazel
Denis Zaichenko 0721e07186 IJPL-180572 Added disk installation support for combined plugin manager IJ-MR-167321
(cherry picked from commit a12de6ae337d1d4085a199e684e502e32f1a4d67)

GitOrigin-RevId: 61ac0890a4755beb201f4c4864858fe1ec39628d
2025-06-30 09:26:18 +00:00

30 lines
981 B
Python

### auto-generated section `build intellij.platform.pluginManager.backend` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "backend_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "backend",
module_name = "intellij.platform.pluginManager.backend",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"//platform/core-api:core",
"@lib//:kotlin-stdlib",
"//platform/kernel/shared:kernel",
"//platform/kernel/rpc.backend",
"//platform/platform-impl:ide-impl",
"//platform/editor-ui-api:editor-ui",
"//platform/util",
"//platform/plugins/parser/impl",
"//platform/core-impl",
"//platform/pluginManager/shared",
"//platform/project/shared:project",
],
runtime_deps = [":backend_resources"]
)
### auto-generated section `build intellij.platform.pluginManager.backend` end