Files
openide/commandInterface/BUILD.bazel
T
Ilia Kirianovskiiandintellij-monorepo-bot f43aa95086 [bazel] Update build files (IJI-3062)
GitOrigin-RevId: 98a67396a48bddc3d084cc93c50ae2f2017bfe8c
2025-09-29 00:11:15 +00:00

27 lines
889 B
Python

### auto-generated section `build intellij.commandInterface` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
resourcegroup(
name = "commandInterface_resources",
srcs = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "commandInterface",
module_name = "intellij.commandInterface",
visibility = ["//visibility:public"],
srcs = glob(["gen/**/*.kt", "gen/**/*.java", "src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
resources = [":commandInterface_resources"],
deps = [
"//platform/core-api:core",
"//platform/util",
"//platform/core-impl",
"//platform/analysis-api:analysis",
"//platform/analysis-impl",
"//platform/execution",
"//platform/editor-ui-api:editor-ui",
],
runtime_deps = ["//platform/backend"]
)
### auto-generated section `build intellij.commandInterface` end