bazel: split test and build sections in convert jps to bazel:L update Bazel files

GitOrigin-RevId: 90063178de33c2a95bfdebd160a721d6977d8097
This commit is contained in:
Leonid Shalupov
2025-07-18 16:18:47 +00:00
committed by intellij-monorepo-bot
parent b73e2b9980
commit cff76ea65e
465 changed files with 2482 additions and 1512 deletions
-2
View File
@@ -539,8 +539,6 @@ jvm_library(
### auto-generated section `build intellij.idea.community.main` end
### auto-generated section `build intellij.idea.community.main.android` start
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "main-android",
visibility = ["//visibility:public"],
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.regexp` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "regexp_resources",
@@ -61,9 +60,13 @@ jvm_library(
],
runtime_deps = [":regexp_resources"]
)
### auto-generated section `build intellij.regexp` end
### auto-generated section `test intellij.regexp` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "regexp_test",
runtime_deps = [":regexp_test_lib"]
)
### auto-generated section `build intellij.regexp` end
### auto-generated section `test intellij.regexp` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.aetherDependencyResolver` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "aether-dependency-resolver",
@@ -49,9 +48,13 @@ jvm_library(
"//platform/util",
]
)
### auto-generated section `build intellij.java.aetherDependencyResolver` end
### auto-generated section `test intellij.java.aetherDependencyResolver` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "aether-dependency-resolver_test",
runtime_deps = [":aether-dependency-resolver_test_lib"]
)
### auto-generated section `build intellij.java.aetherDependencyResolver` end
### auto-generated section `test intellij.java.aetherDependencyResolver` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.idea.tools.launch` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "launch_resources",
@@ -46,9 +45,13 @@ jvm_library(
],
runtime_deps = [":launch_resources"]
)
### auto-generated section `build intellij.idea.tools.launch` end
### auto-generated section `test intellij.idea.tools.launch` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "launch_test",
runtime_deps = [":launch_test_lib"]
)
### auto-generated section `build intellij.idea.tools.launch` end
### auto-generated section `test intellij.idea.tools.launch` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.idea.community.build.tasks` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "tasks",
@@ -80,9 +79,13 @@ jvm_library(
"@rules_jvm//zip",
]
)
### auto-generated section `build intellij.idea.community.build.tasks` end
### auto-generated section `test intellij.idea.community.build.tasks` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "tasks_test",
runtime_deps = [":tasks_test_lib"]
)
### auto-generated section `build intellij.idea.community.build.tasks` end
### auto-generated section `test intellij.idea.community.build.tasks` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.idea.community.build.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "tests",
@@ -23,9 +22,13 @@ jvm_library(
"//platform/build-scripts/downloader",
]
)
### auto-generated section `build intellij.idea.community.build.tests` end
### auto-generated section `test intellij.idea.community.build.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "tests_test",
runtime_deps = [":tests_test_lib"]
)
### auto-generated section `build intellij.idea.community.build.tests` end
### auto-generated section `test intellij.idea.community.build.tests` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_andel",
opt_in = ["kotlin.concurrent.atomics.ExperimentalAtomicApi"]
)
@@ -12,7 +12,7 @@ jvm_library(
module_name = "fleet.andel",
visibility = ["//visibility:public"],
srcs = glob(["srcCommonMain/**/*.kt", "srcCommonMain/**/*.java", "srcJvmMain/**/*.kt", "srcJvmMain/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_andel",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-collections-immutable",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_fastutil",
opt_in = [
"kotlinx.coroutines.ExperimentalCoroutinesApi",
"kotlin.ExperimentalStdlibApi",
@@ -15,7 +15,7 @@ jvm_library(
module_name = "fleet.fastutil",
visibility = ["//visibility:public"],
srcs = glob(["srcCommonMain/**/*.kt", "srcCommonMain/**/*.java", "srcJvmMain/**/*.kt", "srcJvmMain/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_fastutil",
deps = ["@lib//:kotlin-stdlib"]
)
### auto-generated section `build fleet.fastutil` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_kernel",
opt_in = [
"kotlinx.coroutines.ExperimentalCoroutinesApi",
"kotlin.ExperimentalStdlibApi",
@@ -16,7 +16,7 @@ jvm_library(
module_name = "fleet.kernel",
visibility = ["//visibility:public"],
srcs = glob(["srcCommonMain/**/*.kt", "srcCommonMain/**/*.java", "srcJvmMain/**/*.kt", "srcJvmMain/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_kernel",
deps = [
"@lib//:kotlin-stdlib",
"//fleet/rhizomedb",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_lsp.protocol",
context_parameters = True,
opt_in = [
"kotlinx.coroutines.ExperimentalCoroutinesApi",
@@ -16,7 +16,7 @@ jvm_library(
module_name = "fleet.lsp.protocol",
visibility = ["//visibility:public"],
srcs = glob(["src/main/**/*.kt", "src/main/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_lsp.protocol",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_shared",
opt_in = ["kotlinx.coroutines.ExperimentalCoroutinesApi"]
)
@@ -12,7 +12,7 @@ jvm_library(
module_name = "fleet.reporting.shared",
visibility = ["//visibility:public"],
srcs = glob(["srcCommonMain/**/*.kt", "srcCommonMain/**/*.java", "srcJvmMain/**/*.kt", "srcJvmMain/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_shared",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_rhizomedb",
allow_kotlin_package = True,
opt_in = [
"kotlin.ExperimentalStdlibApi",
@@ -16,7 +16,7 @@ jvm_library(
module_name = "fleet.rhizomedb",
visibility = ["//visibility:public"],
srcs = glob(["srcCommonMain/**/*.kt", "srcCommonMain/**/*.java", "srcJvmMain/**/*.kt", "srcJvmMain/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_rhizomedb",
deps = [
"//fleet/util/core",
"//fleet/multiplatform.shims",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_rpc",
opt_in = [
"kotlinx.coroutines.ExperimentalCoroutinesApi",
"kotlin.ExperimentalStdlibApi",
@@ -16,7 +16,7 @@ jvm_library(
module_name = "fleet.rpc",
visibility = ["//visibility:public"],
srcs = glob(["srcCommonMain/**/*.kt", "srcCommonMain/**/*.java", "srcJvmMain/**/*.kt", "srcJvmMain/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_rpc",
exported_compiler_plugins = ["@lib//:rpc-plugin"],
deps = [
"//fleet/reporting/api",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_provided_library")
create_kotlinc_options(
name = "custom",
name = "custom_core",
opt_in = ["kotlin.concurrent.atomics.ExperimentalAtomicApi"]
)
@@ -17,7 +17,7 @@ jvm_library(
module_name = "fleet.util.core",
visibility = ["//visibility:public"],
srcs = glob(["srcJvmMain/**/*.kt", "srcJvmMain/**/*.java", "srcCommonMain/**/*.kt", "srcCommonMain/**/*.java"], allow_empty = True, exclude = ["**/module-info.java"]),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_core",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.images` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "images_resources",
@@ -73,9 +72,13 @@ jvm_library(
],
runtime_deps = [":images_resources"]
)
### auto-generated section `build intellij.platform.images` end
### auto-generated section `test intellij.platform.images` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "images_test",
runtime_deps = [":images_test_lib"]
)
### auto-generated section `build intellij.platform.images` end
### auto-generated section `test intellij.platform.images` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.compiler.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "compiler-tests",
@@ -41,9 +40,13 @@ jvm_library(
],
runtime_deps = ["//spellchecker"]
)
### auto-generated section `build intellij.java.compiler.tests` end
### auto-generated section `test intellij.java.compiler.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "compiler-tests_test",
runtime_deps = [":compiler-tests_test_lib"]
)
### auto-generated section `build intellij.java.compiler.tests` end
### auto-generated section `test intellij.java.compiler.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.guiForms.compiler` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "java-guiForms-compiler",
@@ -36,9 +35,13 @@ jvm_library(
"@lib//:junit4",
]
)
### auto-generated section `build intellij.java.guiForms.compiler` end
### auto-generated section `test intellij.java.guiForms.compiler` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "java-guiForms-compiler_test",
runtime_deps = [":java-guiForms-compiler_test_lib"]
)
### auto-generated section `build intellij.java.guiForms.compiler` end
### auto-generated section `test intellij.java.guiForms.compiler` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.jshell.protocol` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "java-jshell-protocol",
@@ -18,9 +17,13 @@ jvm_library(
associates = [":java-jshell-protocol"],
deps = ["@lib//:junit4"]
)
### auto-generated section `build intellij.java.jshell.protocol` end
### auto-generated section `test intellij.java.jshell.protocol` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "java-jshell-protocol_test",
runtime_deps = [":java-jshell-protocol_test_lib"]
)
### auto-generated section `build intellij.java.jshell.protocol` end
### auto-generated section `test intellij.java.jshell.protocol` end
+5 -4
View File
@@ -68,9 +68,6 @@ jvm_library(
### auto-generated section `build intellij.java.ui` end
### auto-generated section `build intellij.java.ui.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "ui-tests",
visibility = ["//visibility:public"],
@@ -122,9 +119,13 @@ jvm_library(
"//libraries/io",
]
)
### auto-generated section `build intellij.java.ui.tests` end
### auto-generated section `test intellij.java.ui.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "ui-tests_test",
runtime_deps = [":ui-tests_test_lib"]
)
### auto-generated section `build intellij.java.ui.tests` end
### auto-generated section `test intellij.java.ui.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.featuresTrainer` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "featuresTrainer_resources",
@@ -76,9 +75,13 @@ jvm_library(
],
runtime_deps = [":featuresTrainer_resources"]
)
### auto-generated section `build intellij.java.featuresTrainer` end
### auto-generated section `test intellij.java.featuresTrainer` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "featuresTrainer_test",
runtime_deps = [":featuresTrainer_test_lib"]
)
### auto-generated section `build intellij.java.featuresTrainer` end
### auto-generated section `test intellij.java.featuresTrainer` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.frontback.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "frontback-tests",
@@ -39,9 +38,13 @@ jvm_library(
"//java/java-syntax:syntax",
]
)
### auto-generated section `build intellij.java.frontback.tests` end
### auto-generated section `test intellij.java.frontback.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "frontback-tests_test",
runtime_deps = [":frontback-tests_test_lib"]
)
### auto-generated section `build intellij.java.frontback.tests` end
### auto-generated section `test intellij.java.frontback.tests` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_syntax",
jvm_target = 8,
opt_in = [
"org.jetbrains.kotlin.utils.addToStdlib.UnsafeCastFunction",
@@ -22,7 +22,7 @@ jvm_library(
module_name = "intellij.java.syntax",
visibility = ["//visibility:public"],
srcs = glob(["gen/**/*.kt", "gen/**/*.java", "src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_syntax",
deps = [
"//platform/syntax/syntax-api:syntax",
"@lib//:kotlin-stdlib",
+5 -4
View File
@@ -25,9 +25,6 @@ jvm_library(
### auto-generated section `build intellij.java.terminal` end
### auto-generated section `build intellij.java.terminal.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "terminal-tests",
visibility = ["//visibility:public"],
@@ -53,9 +50,13 @@ jvm_library(
"//plugins/terminal:terminal_test_lib",
]
)
### auto-generated section `build intellij.java.terminal.tests` end
### auto-generated section `test intellij.java.terminal.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "terminal-tests_test",
runtime_deps = [":terminal-tests_test_lib"]
)
### auto-generated section `build intellij.java.terminal.tests` end
### auto-generated section `test intellij.java.terminal.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "tests_test_resources",
@@ -162,9 +161,13 @@ jvm_library(
"//plugins/IntelliLang/xml-support:xml-langInjection",
]
)
### auto-generated section `build intellij.java.tests` end
### auto-generated section `test intellij.java.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "tests_test",
runtime_deps = [":tests_test_lib"]
)
### auto-generated section `build intellij.java.tests` end
### auto-generated section `test intellij.java.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.manifest` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "manifest_resources",
@@ -59,9 +58,13 @@ jvm_library(
],
runtime_deps = [":manifest_resources"]
)
### auto-generated section `build intellij.java.manifest` end
### auto-generated section `test intellij.java.manifest` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "manifest_test",
runtime_deps = [":manifest_test_lib"]
)
### auto-generated section `build intellij.java.manifest` end
### auto-generated section `test intellij.java.manifest` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.structuralSearch` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "structuralSearch_resources",
@@ -54,9 +53,13 @@ jvm_library(
],
runtime_deps = [":structuralSearch_resources"]
)
### auto-generated section `build intellij.java.structuralSearch` end
### auto-generated section `test intellij.java.structuralSearch` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "structuralSearch_test",
runtime_deps = [":structuralSearch_test_lib"]
)
### auto-generated section `build intellij.java.structuralSearch` end
### auto-generated section `test intellij.java.structuralSearch` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.java.typeMigration` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "typeMigration_resources",
@@ -58,9 +57,13 @@ jvm_library(
],
runtime_deps = [":typeMigration_resources"]
)
### auto-generated section `build intellij.java.typeMigration` end
### auto-generated section `test intellij.java.typeMigration` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "typeMigration_test",
runtime_deps = [":typeMigration_test_lib"]
)
### auto-generated section `build intellij.java.typeMigration` end
### auto-generated section `test intellij.java.typeMigration` end
+5 -4
View File
@@ -60,9 +60,6 @@ jvm_library(
### auto-generated section `build intellij.platform.jps.build` end
### auto-generated section `build intellij.platform.jps.build.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "build-tests_test_resources",
files = glob(["testResources/**/*"]),
@@ -108,9 +105,13 @@ jvm_library(
],
runtime_deps = [":build-tests_test_resources"]
)
### auto-generated section `build intellij.platform.jps.build.tests` end
### auto-generated section `test intellij.platform.jps.build.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "build-tests_test",
runtime_deps = [":build-tests_test_lib"]
)
### auto-generated section `build intellij.platform.jps.build.tests` end
### auto-generated section `test intellij.platform.jps.build.tests` end
+5 -4
View File
@@ -23,9 +23,6 @@ jvm_library(
### auto-generated section `build intellij.platform.jps.model.impl` end
### auto-generated section `build intellij.platform.jps.model.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "model-tests_test_resources",
files = glob(["testResources/**/*"]),
@@ -55,9 +52,13 @@ jvm_library(
],
runtime_deps = [":model-tests_test_resources"]
)
### auto-generated section `build intellij.platform.jps.model.tests` end
### auto-generated section `test intellij.platform.jps.model.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "model-tests_test",
runtime_deps = [":model-tests_test_lib"]
)
### auto-generated section `build intellij.platform.jps.model.tests` end
### auto-generated section `test intellij.platform.jps.model.tests` end
+5 -4
View File
@@ -26,9 +26,6 @@ jvm_library(
### auto-generated section `build intellij.platform.jps.model.serialization` end
### auto-generated section `build intellij.platform.jps.model.serialization.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "model-serialization-tests_test_resources",
files = glob(["testResources/**/*"]),
@@ -64,9 +61,13 @@ jvm_library(
"//platform/workspace/jps",
]
)
### auto-generated section `build intellij.platform.jps.model.serialization.tests` end
### auto-generated section `test intellij.platform.jps.model.serialization.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "model-serialization-tests_test",
runtime_deps = [":model-serialization-tests_test_lib"]
)
### auto-generated section `build intellij.platform.jps.model.serialization.tests` end
### auto-generated section `test intellij.platform.jps.model.serialization.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.json.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "tests_test_resources",
@@ -49,9 +48,13 @@ jvm_library(
],
runtime_deps = [":tests_test_resources"]
)
### auto-generated section `build intellij.json.tests` end
### auto-generated section `test intellij.json.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "tests_test",
runtime_deps = [":tests_test_lib"]
)
### auto-generated section `build intellij.json.tests` end
### auto-generated section `test intellij.json.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.jvm.analysis.java.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "analysis-java-tests",
@@ -29,9 +28,13 @@ jvm_library(
"//jvm/jvm-analysis-internal-testFramework:analysis-internal-testFramework",
]
)
### auto-generated section `build intellij.jvm.analysis.java.tests` end
### auto-generated section `test intellij.jvm.analysis.java.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "analysis-java-tests_test",
runtime_deps = [":analysis-java-tests_test_lib"]
)
### auto-generated section `build intellij.jvm.analysis.java.tests` end
### auto-generated section `test intellij.jvm.analysis.java.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.k1` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "analysis-kotlin-tests-k1",
@@ -25,9 +24,13 @@ jvm_library(
],
runtime_deps = ["//plugins/kotlin/plugin/k1"]
)
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.k1` end
### auto-generated section `test intellij.jvm.analysis.kotlin.tests.k1` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "analysis-kotlin-tests-k1_test",
runtime_deps = [":analysis-kotlin-tests-k1_test_lib"]
)
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.k1` end
### auto-generated section `test intellij.jvm.analysis.kotlin.tests.k1` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.k2` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "analysis-kotlin-tests-k2",
@@ -23,9 +22,13 @@ jvm_library(
],
runtime_deps = ["//plugins/kotlin/plugin/k2"]
)
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.k2` end
### auto-generated section `test intellij.jvm.analysis.kotlin.tests.k2` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "analysis-kotlin-tests-k2_test",
runtime_deps = [":analysis-kotlin-tests-k2_test_lib"]
)
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.k2` end
### auto-generated section `test intellij.jvm.analysis.kotlin.tests.k2` end
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.shared` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "analysis-kotlin-tests-shared",
@@ -36,9 +35,13 @@ jvm_library(
"//plugins/kotlin/test-framework:test-framework_test_lib",
]
)
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.shared` end
### auto-generated section `test intellij.jvm.analysis.kotlin.tests.shared` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "analysis-kotlin-tests-shared_test",
runtime_deps = [":analysis-kotlin-tests-shared_test_lib"]
)
### auto-generated section `build intellij.jvm.analysis.kotlin.tests.shared` end
### auto-generated section `test intellij.jvm.analysis.kotlin.tests.shared` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_ui",
opt_in = [
"kotlinx.coroutines.ExperimentalCoroutinesApi",
"kotlin.ExperimentalStdlibApi",
@@ -21,7 +21,7 @@ jvm_library(
module_name = "intellij.notebooks.ui",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ui",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-serialization-core",
+9 -6
View File
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.notebooks.visualization` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_visualization",
opt_in = [
"kotlinx.coroutines.ExperimentalCoroutinesApi",
"kotlin.ExperimentalStdlibApi",
@@ -22,7 +21,7 @@ jvm_library(
module_name = "intellij.notebooks.visualization",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java", "gen/**/*.kt", "gen/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_visualization",
deps = [
"@lib//:gson",
"//platform/analysis-api:analysis",
@@ -50,7 +49,7 @@ jvm_library(
name = "visualization_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_visualization",
associates = [":visualization"],
deps = [
"@lib//:gson",
@@ -77,9 +76,13 @@ jvm_library(
],
runtime_deps = [":visualization_resources"]
)
### auto-generated section `build intellij.notebooks.visualization` end
### auto-generated section `test intellij.notebooks.visualization` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "visualization_test",
runtime_deps = [":visualization_test_lib"]
)
### auto-generated section `build intellij.notebooks.visualization` end
### auto-generated section `test intellij.notebooks.visualization` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.backend.observation` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "observation",
@@ -28,9 +27,13 @@ jvm_library(
"@lib//:junit5",
]
)
### auto-generated section `build intellij.platform.backend.observation` end
### auto-generated section `test intellij.platform.backend.observation` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "observation_test",
runtime_deps = [":observation_test_lib"]
)
### auto-generated section `build intellij.platform.backend.observation` end
### auto-generated section `test intellij.platform.backend.observation` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_workspace",
opt_in = ["org.jetbrains.kotlin.utils.addToStdlib.UnsafeCastFunction"]
)
@@ -12,7 +12,7 @@ jvm_library(
module_name = "intellij.platform.backend.workspace",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_workspace",
deps = [
"@lib//:kotlin-stdlib",
"//platform/util",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_build-scripts",
opt_in = [
"kotlin.RequiresOptIn",
"kotlinx.serialization.ExperimentalSerializationApi",
@@ -16,7 +16,7 @@ jvm_library(
module_name = "intellij.platform.buildScripts",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_build-scripts",
deps = [
"//platform/build-scripts/downloader",
"@lib//:commons-compress",
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.buildScripts.codeOptimizer` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "codeOptimizer_test_resources",
@@ -18,9 +17,13 @@ jvm_library(
],
runtime_deps = [":codeOptimizer_test_resources"]
)
### auto-generated section `build intellij.platform.buildScripts.codeOptimizer` end
### auto-generated section `test intellij.platform.buildScripts.codeOptimizer` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "codeOptimizer_test",
runtime_deps = [":codeOptimizer_test_lib"]
)
### auto-generated section `build intellij.platform.buildScripts.codeOptimizer` end
### auto-generated section `test intellij.platform.buildScripts.codeOptimizer` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.images.build` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_provided_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_provided_library")
jvm_provided_library(
name = "xmlDom_provided",
@@ -71,9 +70,13 @@ jvm_library(
"@lib//:hash4j",
]
)
### auto-generated section `build intellij.platform.images.build` end
### auto-generated section `test intellij.platform.images.build` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "images-build_test",
runtime_deps = [":images-build_test_lib"]
)
### auto-generated section `build intellij.platform.images.build` end
### auto-generated section `test intellij.platform.images.build` end
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_testFramework",
opt_in = ["kotlinx.serialization.ExperimentalSerializationApi"]
)
@@ -12,7 +12,7 @@ jvm_library(
module_name = "intellij.platform.buildScripts.testFramework",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_testFramework",
deps = [
"//platform/build-scripts",
"@lib//:kotlin-stdlib",
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.buildScripts.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "tests_test_resources",
@@ -53,9 +52,13 @@ jvm_library(
],
runtime_deps = [":tests_test_resources"]
)
### auto-generated section `build intellij.platform.buildScripts.tests` end
### auto-generated section `test intellij.platform.buildScripts.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "tests_test",
runtime_deps = [":tests_test_lib"]
)
### auto-generated section `build intellij.platform.buildScripts.tests` end
### auto-generated section `test intellij.platform.buildScripts.tests` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_buildData",
opt_in = [
"kotlin.RequiresOptIn",
"kotlinx.serialization.ExperimentalSerializationApi",
@@ -22,7 +22,7 @@ jvm_library(
module_name = "intellij.platform.buildData",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_buildData",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-serialization-core",
+5 -4
View File
@@ -50,9 +50,6 @@ jvm_library(
### auto-generated section `build intellij.platform.builtInServer.impl` end
### auto-generated section `build intellij.platform.builtInServer.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "builtInServer-tests_test_resources",
files = glob(["testResources/**/*"]),
@@ -102,9 +99,13 @@ jvm_library(
],
runtime_deps = [":builtInServer-tests_test_resources"]
)
### auto-generated section `build intellij.platform.builtInServer.tests` end
### auto-generated section `test intellij.platform.builtInServer.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "builtInServer-tests_test",
runtime_deps = [":builtInServer-tests_test_lib"]
)
### auto-generated section `build intellij.platform.builtInServer.tests` end
### auto-generated section `test intellij.platform.builtInServer.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.collaborationTools` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "collaboration-tools_resources",
@@ -116,9 +115,13 @@ jvm_library(
],
runtime_deps = [":collaboration-tools_resources"]
)
### auto-generated section `build intellij.platform.collaborationTools` end
### auto-generated section `test intellij.platform.collaborationTools` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "collaboration-tools_test",
runtime_deps = [":collaboration-tools_test_lib"]
)
### auto-generated section `build intellij.platform.collaborationTools` end
### auto-generated section `test intellij.platform.collaborationTools` end
@@ -54,9 +54,6 @@ jvm_library(
### auto-generated section `build intellij.platform.configurationStore.impl` end
### auto-generated section `build intellij.platform.configurationStore.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "configurationStore-tests_test_resources",
files = glob(["testResources/**/*"]),
@@ -108,9 +105,13 @@ jvm_library(
],
runtime_deps = [":configurationStore-tests_test_resources"]
)
### auto-generated section `build intellij.platform.configurationStore.tests` end
### auto-generated section `test intellij.platform.configurationStore.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "configurationStore-tests_test",
runtime_deps = [":configurationStore-tests_test_lib"]
)
### auto-generated section `build intellij.platform.configurationStore.tests` end
### auto-generated section `test intellij.platform.configurationStore.tests` end
+5 -4
View File
@@ -27,9 +27,6 @@ jvm_library(
### auto-generated section `build intellij.platform.core.nio.fs` end
### auto-generated section `build intellij.platform.core.nio.fs.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "core-nio-fs-tests_test_lib",
visibility = ["//visibility:public"],
@@ -46,9 +43,13 @@ jvm_library(
"@lib//:mockito",
]
)
### auto-generated section `build intellij.platform.core.nio.fs.tests` end
### auto-generated section `test intellij.platform.core.nio.fs.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "core-nio-fs-tests_test",
runtime_deps = [":core-nio-fs-tests_test_lib"]
)
### auto-generated section `build intellij.platform.core.nio.fs.tests` end
### auto-generated section `test intellij.platform.core.nio.fs.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.credentialStore.impl` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "credentialStore-impl_resources",
@@ -81,9 +80,13 @@ jvm_library(
],
runtime_deps = [":credentialStore-impl_resources"]
)
### auto-generated section `build intellij.platform.credentialStore.impl` end
### auto-generated section `test intellij.platform.credentialStore.impl` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "credentialStore-impl_test",
runtime_deps = [":credentialStore-impl_test_lib"]
)
### auto-generated section `build intellij.platform.credentialStore.impl` end
### auto-generated section `test intellij.platform.credentialStore.impl` end
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.diagnostic.freezeAnalyzer` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "freezeAnalyzer_resources",
@@ -45,9 +44,13 @@ jvm_library(
":freezeAnalyzer_test_resources",
]
)
### auto-generated section `build intellij.platform.diagnostic.freezeAnalyzer` end
### auto-generated section `test intellij.platform.diagnostic.freezeAnalyzer` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "freezeAnalyzer_test",
runtime_deps = [":freezeAnalyzer_test_lib"]
)
### auto-generated section `build intellij.platform.diagnostic.freezeAnalyzer` end
### auto-generated section `test intellij.platform.diagnostic.freezeAnalyzer` end
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_startUpPerformanceReporter",
opt_in = ["kotlinx.serialization.ExperimentalSerializationApi"]
)
@@ -12,7 +12,7 @@ jvm_library(
module_name = "intellij.platform.diagnostic.startUpPerformanceReporter",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_startUpPerformanceReporter",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:jackson",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_telemetry-impl",
opt_in = ["kotlinx.serialization.ExperimentalSerializationApi"]
)
@@ -18,7 +18,7 @@ jvm_library(
module_name = "intellij.platform.diagnostic.telemetry.impl",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_telemetry-impl",
deps = [
"@lib//:jackson",
"@lib//:opentelemetry",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_telemetry.exporters",
opt_in = ["kotlinx.serialization.ExperimentalSerializationApi"]
)
@@ -18,7 +18,7 @@ jvm_library(
module_name = "intellij.platform.diagnostic.telemetry.exporters",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_telemetry.exporters",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:jetbrains-annotations",
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.diagnostic.telemetry` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "telemetry",
@@ -38,9 +37,13 @@ jvm_library(
"@lib//:kotlin-test-assertions-core-jvm",
]
)
### auto-generated section `build intellij.platform.diagnostic.telemetry` end
### auto-generated section `test intellij.platform.diagnostic.telemetry` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "telemetry_test",
runtime_deps = [":telemetry_test_lib"]
)
### auto-generated section `build intellij.platform.diagnostic.telemetry` end
### auto-generated section `test intellij.platform.diagnostic.telemetry` end
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.diagnostic.telemetry.agent.extension` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "diagnostic-telemetry-agent-extension_resources",
@@ -43,9 +42,13 @@ jvm_library(
],
runtime_deps = [":diagnostic-telemetry-agent-extension_resources"]
)
### auto-generated section `build intellij.platform.diagnostic.telemetry.agent.extension` end
### auto-generated section `test intellij.platform.diagnostic.telemetry.agent.extension` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "diagnostic-telemetry-agent-extension_test",
runtime_deps = [":diagnostic-telemetry-agent-extension_test_lib"]
)
### auto-generated section `build intellij.platform.diagnostic.telemetry.agent.extension` end
### auto-generated section `test intellij.platform.diagnostic.telemetry.agent.extension` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.diagnostic.telemetry.rt` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "rt",
@@ -30,9 +29,13 @@ jvm_library(
"@lib//:junit5",
]
)
### auto-generated section `build intellij.platform.diagnostic.telemetry.rt` end
### auto-generated section `test intellij.platform.diagnostic.telemetry.rt` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "rt_test",
runtime_deps = [":rt_test_lib"]
)
### auto-generated section `build intellij.platform.diagnostic.telemetry.rt` end
### auto-generated section `test intellij.platform.diagnostic.telemetry.rt` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.diff.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "tests_test_resources",
@@ -44,9 +43,13 @@ jvm_library(
],
runtime_deps = [":tests_test_resources"]
)
### auto-generated section `build intellij.platform.diff.tests` end
### auto-generated section `test intellij.platform.diff.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "tests_test",
runtime_deps = [":tests_test_lib"]
)
### auto-generated section `build intellij.platform.diff.tests` end
### auto-generated section `test intellij.platform.diff.tests` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library")
create_kotlinc_options(
name = "custom",
name = "custom_distributionContent-testFramework",
opt_in = ["kotlinx.serialization.ExperimentalSerializationApi"]
)
@@ -12,7 +12,7 @@ jvm_library(
module_name = "intellij.platform.distributionContent.testFramework",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_distributionContent-testFramework",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kaml",
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.vcs.dvcs.impl` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "vcs-dvcs-impl_resources",
@@ -94,9 +93,13 @@ jvm_library(
],
runtime_deps = [":vcs-dvcs-impl_resources"]
)
### auto-generated section `build intellij.platform.vcs.dvcs.impl` end
### auto-generated section `test intellij.platform.vcs.dvcs.impl` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "vcs-dvcs-impl_test",
runtime_deps = [":vcs-dvcs-impl_test_lib"]
)
### auto-generated section `build intellij.platform.vcs.dvcs.impl` end
### auto-generated section `test intellij.platform.vcs.dvcs.impl` end
+10 -8
View File
@@ -15,9 +15,6 @@ jvm_library(
### auto-generated section `build intellij.platform.eel` end
### auto-generated section `build intellij.platform.eel.codegen` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "eel-codegen_test_lib",
visibility = ["//visibility:public"],
@@ -47,17 +44,18 @@ jvm_library(
],
runtime_deps = ["//plugins/kotlin:kotlin-plugin-community-main"]
)
### auto-generated section `build intellij.platform.eel.codegen` end
### auto-generated section `test intellij.platform.eel.codegen` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "eel-codegen_test",
runtime_deps = [":eel-codegen_test_lib"]
)
### auto-generated section `build intellij.platform.eel.codegen` end
### auto-generated section `test intellij.platform.eel.codegen` end
### auto-generated section `build intellij.platform.eel.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "eel-tests_test_lib",
visibility = ["//visibility:public"],
@@ -72,9 +70,13 @@ jvm_library(
"@lib//:kotlinx-coroutines-test",
]
)
### auto-generated section `build intellij.platform.eel.tests` end
### auto-generated section `test intellij.platform.eel.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "eel-tests_test",
runtime_deps = [":eel-tests_test_lib"]
)
### auto-generated section `build intellij.platform.eel.tests` end
### auto-generated section `test intellij.platform.eel.tests` end
+5 -4
View File
@@ -73,9 +73,6 @@ jvm_library(
### auto-generated section `build intellij.platform.execution.impl` end
### auto-generated section `build intellij.platform.execution.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "execution-tests",
visibility = ["//visibility:public"],
@@ -100,9 +97,13 @@ jvm_library(
"@lib//:assert_j",
]
)
### auto-generated section `build intellij.platform.execution.tests` end
### auto-generated section `test intellij.platform.execution.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "execution-tests_test",
runtime_deps = [":execution-tests_test_lib"]
)
### auto-generated section `build intellij.platform.execution.tests` end
### auto-generated section `test intellij.platform.execution.tests` end
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.execution.process.mediator.client` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "client_resources",
@@ -60,9 +59,13 @@ jvm_library(
],
runtime_deps = [":client_resources"]
)
### auto-generated section `build intellij.execution.process.mediator.client` end
### auto-generated section `test intellij.execution.process.mediator.client` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "client_test",
runtime_deps = [":client_test_lib"]
)
### auto-generated section `build intellij.execution.process.mediator.client` end
### auto-generated section `test intellij.execution.process.mediator.client` end
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.execution.process.mediator.common` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "common_resources",
@@ -43,9 +42,13 @@ jvm_library(
],
runtime_deps = [":common_resources"]
)
### auto-generated section `build intellij.execution.process.mediator.common` end
### auto-generated section `test intellij.execution.process.mediator.common` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "common_test",
runtime_deps = [":common_test_lib"]
)
### auto-generated section `build intellij.execution.process.mediator.common` end
### auto-generated section `test intellij.execution.process.mediator.common` end
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.externalProcessAuthHelper` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "external-process-auth-helper_resources",
@@ -57,9 +56,13 @@ jvm_library(
],
runtime_deps = [":external-process-auth-helper_resources"]
)
### auto-generated section `build intellij.platform.externalProcessAuthHelper` end
### auto-generated section `test intellij.platform.externalProcessAuthHelper` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "external-process-auth-helper_test",
runtime_deps = [":external-process-auth-helper_test_lib"]
)
### auto-generated section `build intellij.platform.externalProcessAuthHelper` end
### auto-generated section `test intellij.platform.externalProcessAuthHelper` end
@@ -27,9 +27,6 @@ jvm_library(
### auto-generated section `build intellij.platform.externalSystem.dependencyUpdater` end
### auto-generated section `build intellij.platform.externalSystem.dependencyUpdater.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "externalSystem-dependencyUpdater-tests_test_resources",
files = glob(["testData/**/*"]),
@@ -58,9 +55,13 @@ jvm_library(
],
runtime_deps = [":externalSystem-dependencyUpdater-tests_test_resources"]
)
### auto-generated section `build intellij.platform.externalSystem.dependencyUpdater.tests` end
### auto-generated section `test intellij.platform.externalSystem.dependencyUpdater.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "externalSystem-dependencyUpdater-tests_test",
runtime_deps = [":externalSystem-dependencyUpdater-tests_test_lib"]
)
### auto-generated section `build intellij.platform.externalSystem.dependencyUpdater.tests` end
### auto-generated section `test intellij.platform.externalSystem.dependencyUpdater.tests` end
+5 -4
View File
@@ -60,9 +60,6 @@ jvm_library(
### auto-generated section `build intellij.platform.externalSystem.impl` end
### auto-generated section `build intellij.platform.externalSystem.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "externalSystem-tests_test_resources",
files = glob(["testResources/**/*"]),
@@ -123,9 +120,13 @@ jvm_library(
],
runtime_deps = [":externalSystem-tests_test_resources"]
)
### auto-generated section `build intellij.platform.externalSystem.tests` end
### auto-generated section `test intellij.platform.externalSystem.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "externalSystem-tests_test",
runtime_deps = [":externalSystem-tests_test_lib"]
)
### auto-generated section `build intellij.platform.externalSystem.tests` end
### auto-generated section `test intellij.platform.externalSystem.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.ijent` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "ijent_resources",
@@ -42,9 +41,13 @@ jvm_library(
],
runtime_deps = [":ijent_resources"]
)
### auto-generated section `build intellij.platform.ijent` end
### auto-generated section `test intellij.platform.ijent` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "ijent_test",
runtime_deps = [":ijent_test_lib"]
)
### auto-generated section `build intellij.platform.ijent` end
### auto-generated section `test intellij.platform.ijent` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_indexing",
opt_in = ["kotlinx.serialization.ExperimentalSerializationApi"]
)
@@ -18,7 +18,7 @@ jvm_library(
module_name = "intellij.platform.indexing",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_indexing",
deps = [
"@lib//:jetbrains-annotations",
"//platform/core-api:core",
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.indexing.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "indexing-tests",
@@ -22,9 +21,13 @@ jvm_library(
"//platform/testFramework:testFramework_test_lib",
]
)
### auto-generated section `build intellij.platform.indexing.tests` end
### auto-generated section `test intellij.platform.indexing.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "indexing-tests_test",
runtime_deps = [":indexing-tests_test_lib"]
)
### auto-generated section `build intellij.platform.indexing.tests` end
### auto-generated section `test intellij.platform.indexing.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.inspect` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "inspect_resources",
@@ -91,9 +90,13 @@ jvm_library(
],
runtime_deps = [":inspect_resources"]
)
### auto-generated section `build intellij.platform.inspect` end
### auto-generated section `test intellij.platform.inspect` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "inspect_test",
runtime_deps = [":inspect_test_lib"]
)
### auto-generated section `build intellij.platform.inspect` end
### auto-generated section `test intellij.platform.inspect` end
+5 -4
View File
@@ -17,9 +17,6 @@ jvm_library(
### auto-generated section `build intellij.platform.instanceContainer` end
### auto-generated section `build intellij.platform.instanceContainer.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "instanceContainer-tests_test_lib",
visibility = ["//visibility:public"],
@@ -34,9 +31,13 @@ jvm_library(
"//platform/testFramework/core",
]
)
### auto-generated section `build intellij.platform.instanceContainer.tests` end
### auto-generated section `test intellij.platform.instanceContainer.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "instanceContainer-tests_test",
runtime_deps = [":instanceContainer-tests_test_lib"]
)
### auto-generated section `build intellij.platform.instanceContainer.tests` end
### auto-generated section `test intellij.platform.instanceContainer.tests` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_decorated-window",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.decoratedWindow",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java", "src/main/java/**/*.kt", "src/main/java/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_decorated-window",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.jewel.detektPlugin` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "detekt-plugin_resources",
@@ -48,9 +47,13 @@ jvm_library(
":detekt-plugin_test_resources",
]
)
### auto-generated section `build intellij.platform.jewel.detektPlugin` end
### auto-generated section `test intellij.platform.jewel.detektPlugin` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "detekt-plugin_test",
runtime_deps = [":detekt-plugin_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.detektPlugin` end
### auto-generated section `test intellij.platform.jewel.detektPlugin` end
+9 -6
View File
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.platform.jewel.foundation` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_foundation",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -25,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.foundation",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_foundation",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -45,7 +44,7 @@ jvm_library(
name = "foundation_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["src/test/kotlin/**/*.kt", "src/test/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_foundation",
associates = [":foundation"],
deps = [
"@lib//:kotlin-stdlib",
@@ -58,9 +57,13 @@ jvm_library(
runtime_deps = [":foundation_resources"],
plugins = ["@lib//:compose-plugin"]
)
### auto-generated section `build intellij.platform.jewel.foundation` end
### auto-generated section `test intellij.platform.jewel.foundation` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "foundation_test",
runtime_deps = [":foundation_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.foundation` end
### auto-generated section `test intellij.platform.jewel.foundation` end
+9 -6
View File
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.platform.jewel.ideLafBridge` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_ide-laf-bridge",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -25,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.ideLafBridge",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ide-laf-bridge",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -52,7 +51,7 @@ jvm_library(
name = "ide-laf-bridge_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["ide-laf-bridge-tests/src/test/kotlin/**/*.kt", "ide-laf-bridge-tests/src/test/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ide-laf-bridge",
associates = [":ide-laf-bridge"],
deps = [
"@lib//:kotlin-stdlib",
@@ -78,9 +77,13 @@ jvm_library(
runtime_deps = [":ide-laf-bridge_resources"],
plugins = ["@lib//:compose-plugin"]
)
### auto-generated section `build intellij.platform.jewel.ideLafBridge` end
### auto-generated section `test intellij.platform.jewel.ideLafBridge` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "ide-laf-bridge_test",
runtime_deps = [":ide-laf-bridge_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.ideLafBridge` end
### auto-generated section `test intellij.platform.jewel.ideLafBridge` end
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_jewel-intUi-decoratedWindow",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.intUi.decoratedWindow",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_jewel-intUi-decoratedWindow",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_jewel-intUi-standalone",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.intUi.standalone",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java", "generated/**/*.kt", "generated/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_jewel-intUi-standalone",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
+9 -6
View File
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.platform.jewel.markdown.core` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_core",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -25,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.core",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_core",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -44,7 +43,7 @@ jvm_library(
name = "core_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["src/test/kotlin/**/*.kt", "src/test/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_core",
associates = [":core"],
deps = [
"@lib//:kotlin-stdlib",
@@ -61,9 +60,13 @@ jvm_library(
runtime_deps = [":core_resources"],
plugins = ["@lib//:compose-plugin"]
)
### auto-generated section `build intellij.platform.jewel.markdown.core` end
### auto-generated section `test intellij.platform.jewel.markdown.core` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "core_test",
runtime_deps = [":core_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.markdown.core` end
### auto-generated section `test intellij.platform.jewel.markdown.core` end
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.platform.jewel.markdown.extensions.autolink` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_autolink",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -25,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.extensions.autolink",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_autolink",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -44,7 +43,7 @@ jvm_library(
name = "autolink_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["src/test/kotlin/**/*.kt", "src/test/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_autolink",
associates = [":autolink"],
deps = [
"@lib//:kotlin-stdlib",
@@ -63,9 +62,13 @@ jvm_library(
runtime_deps = [":autolink_resources"],
plugins = ["@lib//:compose-plugin"]
)
### auto-generated section `build intellij.platform.jewel.markdown.extensions.autolink` end
### auto-generated section `test intellij.platform.jewel.markdown.extensions.autolink` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "autolink_test",
runtime_deps = [":autolink_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.markdown.extensions.autolink` end
### auto-generated section `test intellij.platform.jewel.markdown.extensions.autolink` end
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.platform.jewel.markdown.extensions.gfmAlerts` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_gfm-alerts",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -25,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.extensions.gfmAlerts",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_gfm-alerts",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -43,7 +42,7 @@ jvm_library(
name = "gfm-alerts_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["src/test/kotlin/**/*.kt", "src/test/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_gfm-alerts",
associates = [":gfm-alerts"],
deps = [
"@lib//:kotlin-stdlib",
@@ -61,9 +60,13 @@ jvm_library(
runtime_deps = [":gfm-alerts_resources"],
plugins = ["@lib//:compose-plugin"]
)
### auto-generated section `build intellij.platform.jewel.markdown.extensions.gfmAlerts` end
### auto-generated section `test intellij.platform.jewel.markdown.extensions.gfmAlerts` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "gfm-alerts_test",
runtime_deps = [":gfm-alerts_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.markdown.extensions.gfmAlerts` end
### auto-generated section `test intellij.platform.jewel.markdown.extensions.gfmAlerts` end
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_gfm-strikethrough",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.extensions.gfmStrikethrough",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_gfm-strikethrough",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_gfm-tables",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.extensions.gfmTables",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_gfm-tables",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_images",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.extensions.images",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_images",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_ide-laf-bridge-styling",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.ideLafBridgeStyling",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ide-laf-bridge-styling",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_int-ui-standalone-styling",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.markdown.intUiStandaloneStyling",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_int-ui-standalone-styling",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_ide-plugin",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.samples.idePlugin",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ide-plugin",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_showcase",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.samples.showcase",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_showcase",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_standalone",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -24,7 +24,7 @@ jvm_library(
module_name = "intellij.platform.jewel.samples.standalone",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_standalone",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
+8 -5
View File
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.platform.jewel.uiTests` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_ui-tests",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -30,7 +29,7 @@ jvm_library(
name = "ui-tests_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["src/test/kotlin/**/*.kt", "src/test/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ui-tests",
deps = [
"@lib//:kotlinx-coroutines-core",
"@lib//:jetbrains-annotations",
@@ -47,9 +46,13 @@ jvm_library(
runtime_deps = [":ui-tests_test_resources"],
plugins = ["@lib//:compose-plugin"]
)
### auto-generated section `build intellij.platform.jewel.uiTests` end
### auto-generated section `test intellij.platform.jewel.uiTests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "ui-tests_test",
runtime_deps = [":ui-tests_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.uiTests` end
### auto-generated section `test intellij.platform.jewel.uiTests` end
+9 -6
View File
@@ -1,10 +1,9 @@
### auto-generated section `build intellij.platform.jewel.ui` start
load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_ui",
context_receivers = True,
opt_in = [
"androidx.compose.ui.ExperimentalComposeUiApi",
@@ -31,7 +30,7 @@ jvm_library(
module_name = "intellij.platform.jewel.ui",
visibility = ["//visibility:public"],
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java", "generated/**/*.kt", "generated/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ui",
deps = [
"@lib//:kotlin-stdlib",
"@lib//:kotlinx-coroutines-core",
@@ -54,7 +53,7 @@ jvm_library(
name = "ui_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["src/test/kotlin/**/*.kt", "src/test/kotlin/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_ui",
associates = [":ui"],
deps = [
"@lib//:kotlin-stdlib",
@@ -74,9 +73,13 @@ jvm_library(
],
plugins = ["@lib//:compose-plugin"]
)
### auto-generated section `build intellij.platform.jewel.ui` end
### auto-generated section `test intellij.platform.jewel.ui` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "ui_test",
runtime_deps = [":ui_test_lib"]
)
### auto-generated section `build intellij.platform.jewel.ui` end
### auto-generated section `test intellij.platform.jewel.ui` end
+2 -2
View File
@@ -3,7 +3,7 @@ load("//build:compiler-options.bzl", "create_kotlinc_options")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
create_kotlinc_options(
name = "custom",
name = "custom_backend",
opt_in = [
"kotlinx.coroutines.ExperimentalCoroutinesApi",
"kotlin.ExperimentalStdlibApi",
@@ -21,7 +21,7 @@ jvm_library(
module_name = "intellij.platform.kernel.backend",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
kotlinc_opts = ":custom",
kotlinc_opts = ":custom_backend",
deps = [
"//platform/extensions",
"//platform/util",
+5 -4
View File
@@ -138,9 +138,6 @@ jvm_library(
### auto-generated section `build intellij.platform.lang.impl` end
### auto-generated section `build intellij.platform.lang.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "lang-tests",
visibility = ["//visibility:public"],
@@ -229,9 +226,13 @@ jvm_library(
"//platform/testFramework/junit5/projectStructure:projectStructure_test_lib",
]
)
### auto-generated section `build intellij.platform.lang.tests` end
### auto-generated section `test intellij.platform.lang.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "lang-tests_test",
runtime_deps = [":lang-tests_test_lib"]
)
### auto-generated section `build intellij.platform.lang.tests` end
### auto-generated section `test intellij.platform.lang.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.lang.testEntities` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "testEntities",
@@ -20,9 +19,13 @@ jvm_library(
"//platform/projectModel-impl",
]
)
### auto-generated section `build intellij.platform.lang.testEntities` end
### auto-generated section `test intellij.platform.lang.testEntities` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "testEntities_test",
runtime_deps = [":testEntities_test_lib"]
)
### auto-generated section `build intellij.platform.lang.testEntities` end
### auto-generated section `test intellij.platform.lang.testEntities` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.lvcs.impl` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "lvcs-impl_resources",
@@ -83,9 +82,13 @@ jvm_library(
],
runtime_deps = [":lvcs-impl_resources"]
)
### auto-generated section `build intellij.platform.lvcs.impl` end
### auto-generated section `test intellij.platform.lvcs.impl` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "lvcs-impl_test",
runtime_deps = [":lvcs-impl_test_lib"]
)
### auto-generated section `build intellij.platform.lvcs.impl` end
### auto-generated section `test intellij.platform.lvcs.impl` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.markdown.utils` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "markdown-utils",
@@ -33,9 +32,13 @@ jvm_library(
"//platform/lang-impl",
]
)
### auto-generated section `build intellij.platform.markdown.utils` end
### auto-generated section `test intellij.platform.markdown.utils` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "markdown-utils_test",
runtime_deps = [":markdown-utils_test_lib"]
)
### auto-generated section `build intellij.platform.markdown.utils` end
### auto-generated section `test intellij.platform.markdown.utils` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.ml.impl` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "ml-impl_resources",
@@ -80,9 +79,13 @@ jvm_library(
":ml-impl_test_resources",
]
)
### auto-generated section `build intellij.platform.ml.impl` end
### auto-generated section `test intellij.platform.ml.impl` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "ml-impl_test",
runtime_deps = [":ml-impl_test_lib"]
)
### auto-generated section `build intellij.platform.ml.impl` end
### auto-generated section `test intellij.platform.ml.impl` end
+11 -9
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.objectSerializer` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "object-serializer",
@@ -50,16 +49,18 @@ jvm_library(
"//platform/settings",
]
)
### auto-generated section `build intellij.platform.objectSerializer` end
### auto-generated section `test intellij.platform.objectSerializer` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "object-serializer_test",
runtime_deps = [":object-serializer_test_lib"]
)
### auto-generated section `build intellij.platform.objectSerializer` end
### auto-generated section `test intellij.platform.objectSerializer` end
### auto-generated section `build intellij.platform.objectSerializer.annotations` start
load("@rules_jvm//:jvm.bzl", "jvm_library")
jvm_library(
name = "objectSerializer-annotations",
module_name = "intellij.platform.objectSerializer.annotations",
@@ -70,9 +71,6 @@ jvm_library(
### auto-generated section `build intellij.platform.objectSerializer.annotations` end
### auto-generated section `build intellij.platform.objectSerializer.tests` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
jvm_library(
name = "objectSerializer-tests",
visibility = ["//visibility:public"],
@@ -98,9 +96,13 @@ jvm_library(
"@lib//:fastutil-min",
]
)
### auto-generated section `build intellij.platform.objectSerializer.tests` end
### auto-generated section `test intellij.platform.objectSerializer.tests` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "objectSerializer-tests_test",
runtime_deps = [":objectSerializer-tests_test_lib"]
)
### auto-generated section `build intellij.platform.objectSerializer.tests` end
### auto-generated section `test intellij.platform.objectSerializer.tests` end
+6 -3
View File
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.ide.impl` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
load("@rules_kotlin//kotlin:jvm.bzl", "kt_javac_options")
kt_javac_options(
@@ -318,9 +317,13 @@ jvm_library(
],
runtime_deps = [":ide-impl_resources"]
)
### auto-generated section `build intellij.platform.ide.impl` end
### auto-generated section `test intellij.platform.ide.impl` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "ide-impl_test",
runtime_deps = [":ide-impl_test_lib"]
)
### auto-generated section `build intellij.platform.ide.impl` end
### auto-generated section `test intellij.platform.ide.impl` end
@@ -1,6 +1,5 @@
### auto-generated section `build intellij.platform.ide.concurrency` start
load("@community//build:tests-options.bzl", "jps_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
jvm_resources(
name = "concurrency_resources",
@@ -54,9 +53,13 @@ jvm_library(
],
runtime_deps = [":concurrency_resources"]
)
### auto-generated section `build intellij.platform.ide.concurrency` end
### auto-generated section `test intellij.platform.ide.concurrency` start
load("@community//build:tests-options.bzl", "jps_test")
jps_test(
name = "concurrency_test",
runtime_deps = [":concurrency_test_lib"]
)
### auto-generated section `build intellij.platform.ide.concurrency` end
### auto-generated section `test intellij.platform.ide.concurrency` end

Some files were not shown because too many files have changed in this diff Show More