Files
openide/wintools/BUILD.bazel
Vladimir Krivosheev 9485392013 update bazel files
GitOrigin-RevId: c4c38c3273b34ae07b97f31a6f7d9ef80e7d6387
2025-01-12 14:08:41 +00:00

42 lines
1.1 KiB
Python

### auto-generated section `build intellij.community.wintools` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "wintools_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "wintools",
module_name = "intellij.community.wintools",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlin-stdlib",
"//platform/util",
"@lib//:jna",
],
runtime_deps = [":wintools_resources"]
)
jvm_library(
name = "wintools_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["tests/**/*.kt", "tests/**/*.java"], allow_empty = True),
associates = [":wintools"],
deps = [
"@lib//:kotlin-stdlib",
"//platform/util",
"@lib//:jna",
"@lib//:junit5",
"@lib//:hamcrest",
],
runtime_deps = [":wintools_resources"]
)
jvm_test(
name = "wintools_test",
runtime_deps = [":wintools_test_lib"]
)
### auto-generated section `build intellij.community.wintools` end