Files
openide/commandInterface/BUILD.bazel
Vladimir Krivosheev ef0323d07c IJ-MR-162467 don't export intellij.platform.core
GitOrigin-RevId: 05f350c1c087be1bf9b46d8bdac5345a65f55958
2025-06-13 21:52:48 +00:00

29 lines
870 B
Python

### auto-generated section `build intellij.commandInterface` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "commandInterface_resources",
files = 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"], allow_empty = True),
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 = [
":commandInterface_resources",
"//platform/backend",
]
)
### auto-generated section `build intellij.commandInterface` end