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

24 lines
705 B
Python

### auto-generated section `build intellij.python.copyright` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "copyright_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "copyright",
module_name = "intellij.python.copyright",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"//plugins/copyright",
"@lib//:kotlin-stdlib",
"//platform/util",
"//platform/core-api:core",
"//python:python-community-impl",
],
runtime_deps = [":copyright_resources"]
)
### auto-generated section `build intellij.python.copyright` end