Files
openide/python/tools/BUILD.bazel
Vladimir Krivosheev b935234c91 IJ-MR-162467 don't export intellij.platform.projectModel
GitOrigin-RevId: 11c0bf5ca0f3a6d892658a2b149d85cace9aa2b8
2025-06-14 13:00:48 +00:00

36 lines
1.0 KiB
Python

### auto-generated section `build intellij.python.tools` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "tools_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "tools",
module_name = "intellij.python.tools",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlin-stdlib",
"//platform/analysis-api:analysis",
"//platform/core-api:core",
"//platform/projectModel-api:projectModel",
"//platform/testFramework",
"//python/python-psi-api:psi",
"//python:python-community-impl",
"@lib//:guava",
"//python/python-sdk:sdk",
"@lib//:kotlin-script-runtime",
"@lib//ant/lib:ant-antlr-provided",
"//python/testFramework",
],
runtime_deps = [
":tools_resources",
"//python:pycharm-community",
"//python/pluginCore:community-plugin",
"//platform/build-scripts/downloader",
]
)
### auto-generated section `build intellij.python.tools` end