Files
openide/python/python-core-impl/BUILD.bazel
Vladimir Krivosheev e3d5d85a47 update bazel files
GitOrigin-RevId: 4a1f45312f93e76248b05a7c8cc27a2b2ac84036
2025-04-30 14:07:08 +00:00

26 lines
834 B
Python

### auto-generated section `build intellij.python.community.core.impl` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "community-core-impl_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "community-core-impl",
module_name = "intellij.python.community.core.impl",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"//python/python-psi-api:psi",
"//platform/analysis-impl",
"//platform/lang-impl",
"//RegExpSupport:regexp",
"@lib//:guava",
"//python/python-psi-impl:psi-impl",
"//python/python-sdk:sdk",
],
runtime_deps = [":community-core-impl_resources"]
)
### auto-generated section `build intellij.python.community.core.impl` end