forked from DetachHead/rebased
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
70 lines (65 loc) · 2.26 KB
/
Copy pathBUILD.bazel
File metadata and controls
70 lines (65 loc) · 2.26 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
### auto-generated section `build intellij.java.typeMigration` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
resourcegroup(
name = "typeMigration_resources",
srcs = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "typeMigration",
module_name = "intellij.java.typeMigration",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
resources = [":typeMigration_resources"],
deps = [
"//platform/analysis-api:analysis",
"//platform/code-style-api:codeStyle",
"//platform/core-api:core",
"//platform/editor-ui-api:editor-ui",
"//platform/refactoring",
"//platform/util",
"//platform/lang-api:lang",
"//platform/lang-impl",
"//java/openapi:java",
"//platform/structuralsearch:structuralSearch",
"//java/java-impl:impl",
"//java/java-impl-refactorings:impl-refactorings",
"//java/codeserver/highlighting",
]
)
jvm_library(
name = "typeMigration_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True),
associates = [":typeMigration"],
deps = [
"//platform/analysis-api:analysis",
"//platform/code-style-api:codeStyle",
"//platform/core-api:core",
"//platform/core-ui",
"//platform/editor-ui-api:editor-ui",
"//platform/refactoring",
"//platform/util",
"//platform/lang-api:lang",
"//platform/lang-impl",
"//java/openapi:java",
"//platform/structuralsearch:structuralSearch",
"//platform/testFramework",
"//platform/testFramework:testFramework_test_lib",
"//java/java-impl:impl",
"//java/java-impl:impl_test_lib",
"//java/testFramework",
"//platform/code-style-impl:codeStyle-impl",
"//java/java-impl-refactorings:impl-refactorings",
"//java/codeserver/highlighting",
"//platform/projectModel-api:projectModel",
]
)
### 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 `test intellij.java.typeMigration` end