Files
openide/plugins/javaFX/common/BUILD.bazel
Vladimir Krivosheev 0bc1cf1557 update bazel files
GitOrigin-RevId: 7320d3eff3aba093692ce66839c720ece6d7c4db
2024-12-30 11:28:24 +00:00

22 lines
631 B
Python

### auto-generated section `build intellij.javaFX.common` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "common_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "common",
module_name = "intellij.javaFX.common",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = "@community//:k11",
deps = [
"//platform/util",
"//platform/core-api:core",
],
runtime_deps = [":common_resources"]
)
### auto-generated section `build intellij.javaFX.common` end