Files
openide/java/typeMigration/BUILD.bazel
Vladimir Krivosheev 0d7a3d6a26 update bazel files
GitOrigin-RevId: 0a24ce8e81d403fa978c7237a7fc193ec40cb0bc
2025-02-03 18:28:40 +00:00

55 lines
1.7 KiB
Python

### auto-generated section `build intellij.java.typeMigration` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "typeMigration_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "typeMigration",
module_name = "intellij.java.typeMigration",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
deps = [
"//platform/util",
"//platform/lang-api:lang",
"//platform/lang-impl",
"//java/openapi:java",
"//platform/structuralsearch:structuralSearch",
"//java/java-impl:impl",
"//java/structuralsearch-java:structuralSearch",
"//java/java-impl-refactorings:impl-refactorings",
],
runtime_deps = [":typeMigration_resources"]
)
jvm_library(
name = "typeMigration_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True),
associates = [":typeMigration"],
deps = [
"//platform/util",
"//platform/lang-api:lang",
"//platform/lang-impl",
"//java/openapi:java",
"//platform/structuralsearch:structuralSearch",
"//platform/testFramework",
"//platform/testFramework:testFramework_test_lib",
"//java/java-impl:impl",
"//java/testFramework",
"//java/structuralsearch-java:structuralSearch",
"//java/structuralsearch-java:structuralSearch_test_lib",
"//platform/code-style-impl:codeStyle-impl",
"//java/java-impl-refactorings:impl-refactorings",
],
runtime_deps = [":typeMigration_resources"]
)
jvm_test(
name = "typeMigration_test",
runtime_deps = [":typeMigration_test_lib"]
)
### auto-generated section `build intellij.java.typeMigration` end