Files
openide/java/plugin/BUILD.bazel
Vladimir Krivosheev c4be4cd1f9 update bazel files
GitOrigin-RevId: eef213c0691462fde9127dd56184f7f85a892a65
2025-05-15 09:18:18 +00:00

45 lines
1.4 KiB
Python

### auto-generated section `build intellij.java.plugin` start
load("@rules_java//java:defs.bzl", "java_library")
load("@rules_jvm//:jvm.bzl", "jvm_resources")
jvm_resources(
name = "plugin_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
java_library(
name = "plugin",
visibility = ["//visibility:public"],
runtime_deps = [
":plugin_resources",
"//java/compiler/impl",
"//java/debugger/impl",
"//java/debugger/shared",
"//java/debugger/frontend",
"//java/debugger/backend",
"//xml/dom-impl",
"//java/debugger/memory-agent:java-debugger-memory-agent",
"//java/execution/impl",
"//java/execution/shared",
"//java/execution/backend",
"//java/execution/frontend",
"//platform/external-system-impl:externalSystem-impl",
"//java/idea-ui:ui",
"//java/manifest",
"//java/java-impl-inspections:impl-inspections",
"//java/java-analysis-impl:analysis-impl",
"//java/java-indexing-impl:indexing-impl",
"//java/jsp-spi",
"//uast/uast-java-ide:java-uast-ide",
"//java/structuralsearch-java:structuralSearch",
"//java/typeMigration",
"//resources:java-resources",
"//resources-en:java-resources-en",
"//plugins/IntelliLang/java-support:java-langInjection",
"//java/performancePlugin",
"//java/vcs",
"//java/java-syntax:syntax",
]
)
### auto-generated section `build intellij.java.plugin` end