mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
22 lines
662 B
Python
22 lines
662 B
Python
### auto-generated section `build intellij.platform.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.platform.frontend",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
|
|
deps = [
|
|
"@lib//:kotlin-stdlib",
|
|
"@lib//:jetbrains-annotations",
|
|
"//platform/platform-impl:ide-impl",
|
|
],
|
|
runtime_deps = [":frontend_resources"]
|
|
)
|
|
### auto-generated section `build intellij.platform.frontend` end |