Files
openide/grid/types/BUILD.bazel
Vladimir Krivosheev b8245e1370 IJ-CR-146078 update bazel files
GitOrigin-RevId: 3bcfd10f71c84283bded464e142ead99edc6a278
2025-02-02 15:20:11 +00:00

22 lines
625 B
Python

### auto-generated section `build intellij.grid.types` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "types_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "types",
module_name = "intellij.grid.types",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = "@community//:k8",
deps = [
"//platform/util-rt",
"@lib//:jetbrains-annotations",
],
runtime_deps = [":types_resources"]
)
### auto-generated section `build intellij.grid.types` end