forked from JetBrains/intellij-community
-
-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathBUILD.bazel
More file actions
75 lines (69 loc) · 2.27 KB
/
BUILD.bazel
File metadata and controls
75 lines (69 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
### 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/execution",
"//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/execution",
"//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",
"//libraries/hamcrest",
"//python/python-venv:venv",
"//python/python-venv:venv_test_lib",
"@lib//:junit5Params",
"@lib//:junit5Pioneer",
"//platform/testFramework/common",
"//python/python-test-env/junit5:junit5_test_lib",
]
)
### 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