simplify bazel labels (another step towards using simple names that reflect directory structure)

GitOrigin-RevId: 12bfb2d0fa315d87c7a4ade363d0f834cf324b71
This commit is contained in:
Vladimir Krivosheev
2025-05-08 16:58:30 +00:00
committed by intellij-monorepo-bot
parent 8d29a4140d
commit 6f8ff07ccc
609 changed files with 4762 additions and 4690 deletions
@@ -2,13 +2,13 @@
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "python-community-testFramework-testEnv-conda_resources",
name = "conda_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "python-community-testFramework-testEnv-conda",
name = "conda",
module_name = "intellij.python.community.testFramework.testEnv.conda",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
@@ -21,6 +21,6 @@ jvm_library(
"//platform/execution",
"//platform/util",
],
runtime_deps = [":python-community-testFramework-testEnv-conda_resources"]
runtime_deps = [":conda_resources"]
)
### auto-generated section `build intellij.python.community.testFramework.testEnv.conda` end