mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
add explicit kotlin-stdlib, restructure projectFrame GitOrigin-RevId: c151a69ae1e9b925b1892a3b01ba5d01566bba3b
22 lines
692 B
Python
22 lines
692 B
Python
### auto-generated section `build intellij.idea.customization.base` start
|
|
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
|
|
|
|
resourcegroup(
|
|
name = "base_resources",
|
|
srcs = glob(["resources/**/*"]),
|
|
strip_prefix = "resources"
|
|
)
|
|
|
|
jvm_library(
|
|
name = "base",
|
|
module_name = "intellij.idea.customization.base",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
|
|
resources = [":base_resources"],
|
|
deps = [
|
|
"@lib//:kotlin-stdlib",
|
|
"//platform/platform-impl:ide-impl",
|
|
"//platform/platform-util-io:ide-util-io",
|
|
]
|
|
)
|
|
### auto-generated section `build intellij.idea.customization.base` end |