mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
### auto-generated section `build intellij.python.terminal` start
|
|
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
|
|
|
|
resourcegroup(
|
|
name = "terminal_resources",
|
|
srcs = glob(["resources/**/*"]),
|
|
strip_prefix = "resources"
|
|
)
|
|
|
|
resourcegroup(
|
|
name = "terminal_test_resources",
|
|
srcs = glob(["testResources/**/*"]),
|
|
strip_prefix = "testResources"
|
|
)
|
|
|
|
jvm_library(
|
|
name = "terminal",
|
|
module_name = "intellij.python.terminal",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
|
|
resources = [":terminal_resources"],
|
|
deps = [
|
|
"//python:python-community-impl",
|
|
"//plugins/terminal",
|
|
"//platform/core-api:core",
|
|
"//platform/projectModel-api:projectModel",
|
|
"@lib//:kotlin-stdlib",
|
|
"//python/python-sdk:sdk",
|
|
"//platform/lang-api:lang",
|
|
]
|
|
)
|
|
|
|
jvm_library(
|
|
name = "terminal_test_lib",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["tests/**/*.kt", "tests/**/*.java", "tests/**/*.form"], allow_empty = True),
|
|
resources = [":terminal_test_resources"],
|
|
associates = [":terminal"],
|
|
deps = [
|
|
"//python:python-community-impl",
|
|
"//plugins/terminal",
|
|
"//libraries/mockito",
|
|
"//platform/core-api:core",
|
|
"//platform/projectModel-api:projectModel",
|
|
"@lib//:kotlin-stdlib",
|
|
"//python/python-sdk:sdk",
|
|
"//python/python-sdk:sdk_test_lib",
|
|
"//platform/lang-api:lang",
|
|
"//python/junit5Tests-framework:community-junit5Tests-framework_test_lib",
|
|
"@lib//:junit5",
|
|
"//platform/testFramework/junit5",
|
|
"//platform/testFramework/junit5:junit5_test_lib",
|
|
"//python/testFramework",
|
|
"//platform/eel-provider",
|
|
"@lib//:hamcrest",
|
|
"//python/setup-test-environment:community-testFramework-testEnv",
|
|
"//python/python-venv:community-impl-venv",
|
|
"//python/python-venv:community-impl-venv_test_lib",
|
|
"//python/junit5Tests-framework/conda:conda_test_lib",
|
|
"@lib//:junit5Params",
|
|
"@lib//:junit5Pioneer",
|
|
"//platform/testFramework/common",
|
|
]
|
|
)
|
|
### auto-generated section `build intellij.python.terminal` end
|
|
|
|
### auto-generated section `test intellij.python.terminal` start
|
|
load("@community//build:tests-options.bzl", "jps_test")
|
|
|
|
jps_test(
|
|
name = "terminal_test",
|
|
runtime_deps = [":terminal_test_lib"]
|
|
)
|
|
### auto-generated section `test intellij.python.terminal` end |