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

30 lines
1006 B
Python

### auto-generated section `build intellij.java.execution.impl.frontend` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "frontend_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "frontend",
module_name = "intellij.java.execution.impl.frontend",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlinx-serialization-core",
"@lib//:kotlinx-serialization-json",
"//java/execution/shared",
"//platform/core-ui",
"//platform/editor-ui-api:editor-ui",
"//platform/platform-impl/rpc",
"//platform/platform-impl:ide-impl",
"//platform/kernel/shared:kernel",
"//platform/project/shared:project",
"//platform/testRunner",
"//java/java-frontback-impl:frontback-impl",
],
runtime_deps = [":frontend_resources"]
)
### auto-generated section `build intellij.java.execution.impl.frontend` end