Files
openide/python/python-sdk-ui/BUILD.bazel
Ilya.Kazakevich a1b92b2591 [python] PY-79486: (WIP) split pyproject.toml tools into backend/common.
Each tool (uv, poetry) now has `common` and `backend` part. `common` has icons because we need them both on the front and on the back.

We might need to create `front` module also if we wouldn't be able to use icons in compose.

GitOrigin-RevId: 560b5aa67e4e747a1653ad6e4f780301a3fae289
2025-11-24 16:35:26 +00:00

35 lines
1.1 KiB
Python

### auto-generated section `build intellij.python.sdk.ui` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
resourcegroup(
name = "sdk-ui_resources",
srcs = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "sdk-ui",
module_name = "intellij.python.sdk.ui",
visibility = ["//visibility:public"],
srcs = glob(["gen/**/*.kt", "gen/**/*.java", "src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
resources = [":sdk-ui_resources"],
deps = [
"@lib//:kotlin-stdlib",
"//platform/util",
"//platform/core-api:core",
"//platform/core-ui",
"//platform/projectModel-api:projectModel",
"//platform/platform-api:ide",
"//platform/platform-impl:ide-impl",
"//platform/editor-ui-api:editor-ui",
"//python/openapi:community",
"//python/python-sdk:sdk",
"//python/python-syntax-core:syntax-core",
"//libraries/caffeine",
"@lib//:io-github-z4kn4fein-semver-jvm",
"//python/python-exec-service:community-execService",
"//python/python-poetry/common",
"//python/python-uv/common",
]
)
### auto-generated section `build intellij.python.sdk.ui` end