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

42 lines
1.1 KiB
Python

### auto-generated section `build intellij.tools.updater` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "tools-updater_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "tools-updater",
module_name = "intellij.tools.updater",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = "@community//:k11",
deps = [
"@lib//:jetbrains-annotations",
"@lib//:jna",
],
runtime_deps = [":tools-updater_resources"]
)
jvm_library(
name = "tools-updater_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True),
kotlinc_opts = "@community//:k11",
associates = [":tools-updater"],
deps = [
"@lib//:jetbrains-annotations",
"@lib//:jna",
"@lib//:junit5",
"@lib//:assert_j",
],
runtime_deps = [":tools-updater_resources"]
)
jvm_test(
name = "tools-updater_test",
runtime_deps = [":tools-updater_test_lib"]
)
### auto-generated section `build intellij.tools.updater` end