Files
openide/python/IntelliLang-python/BUILD.bazel
Vladimir Krivosheev 98799639aa do not use _test as lib - test targets do not support this
GitOrigin-RevId: f2f49db4294b6a64040dbbd5f1d95e972cbd70a3
2024-12-15 18:32:30 +00:00

24 lines
746 B
Python

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