mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
GitOrigin-RevId: 275260ab73f59d3c08f0b4cb9f4c89b74054094a
84 lines
2.8 KiB
Python
84 lines
2.8 KiB
Python
### auto-generated section `build intellij.python.community.execService` start
|
|
load("//build:compiler-options.bzl", "create_kotlinc_options")
|
|
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
|
|
|
|
create_kotlinc_options(
|
|
name = "custom_community-execService",
|
|
opt_in = ["kotlin.time.ExperimentalTime"]
|
|
)
|
|
|
|
jvm_resources(
|
|
name = "community-execService_resources",
|
|
files = glob(["resources/**/*"]),
|
|
strip_prefix = "resources"
|
|
)
|
|
|
|
jvm_library(
|
|
name = "community-execService",
|
|
module_name = "intellij.python.community.execService",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
|
|
kotlinc_opts = ":custom_community-execService",
|
|
deps = [
|
|
"@lib//:kotlin-stdlib",
|
|
"@lib//:jetbrains-annotations",
|
|
"//python/openapi:community",
|
|
"//platform/eel-provider",
|
|
"//platform/util",
|
|
"@lib//:kotlinx-coroutines-core",
|
|
"//platform/eel-impl",
|
|
"//platform/core-api:core",
|
|
"//platform/eel",
|
|
"//platform/util/progress",
|
|
"//platform/execution",
|
|
"//platform/projectModel-api:projectModel",
|
|
"@lib//:kotlinx-serialization-json",
|
|
"@lib//:kotlinx-serialization-core",
|
|
],
|
|
runtime_deps = [":community-execService_resources"]
|
|
)
|
|
|
|
jvm_library(
|
|
name = "community-execService_test_lib",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["tests/**/*.kt", "tests/**/*.java", "tests/**/*.form"], allow_empty = True),
|
|
kotlinc_opts = ":custom_community-execService",
|
|
associates = [":community-execService"],
|
|
deps = [
|
|
"@lib//:kotlin-stdlib",
|
|
"@lib//:jetbrains-annotations",
|
|
"//python/openapi:community",
|
|
"//python/openapi:community_test_lib",
|
|
"//platform/eel-provider",
|
|
"//platform/util",
|
|
"@lib//:kotlinx-coroutines-core",
|
|
"//platform/eel-impl",
|
|
"//platform/testFramework/junit5",
|
|
"//platform/testFramework/junit5:junit5_test_lib",
|
|
"@lib//:junit5",
|
|
"@lib//:hamcrest",
|
|
"@lib//:junit5Params",
|
|
"//platform/core-api:core",
|
|
"//platform/eel",
|
|
"//platform/testFramework/junit5/eel",
|
|
"//platform/testFramework/junit5/eel:eel_test_lib",
|
|
"@lib//:junit5Pioneer",
|
|
"//platform/testFramework/common",
|
|
"//platform/util/progress",
|
|
"//platform/execution",
|
|
"//platform/projectModel-api:projectModel",
|
|
"@lib//:kotlinx-serialization-json",
|
|
"@lib//:kotlinx-serialization-core",
|
|
],
|
|
runtime_deps = [":community-execService_resources"]
|
|
)
|
|
### auto-generated section `build intellij.python.community.execService` end
|
|
|
|
### auto-generated section `test intellij.python.community.execService` start
|
|
load("@community//build:tests-options.bzl", "jps_test")
|
|
|
|
jps_test(
|
|
name = "community-execService_test",
|
|
runtime_deps = [":community-execService_test_lib"]
|
|
)
|
|
### auto-generated section `test intellij.python.community.execService` end |