-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathBUILD.bazel
120 lines (116 loc) · 4.54 KB
/
BUILD.bazel
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
### auto-generated section `build intellij.graphql` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources", "jvm_test")
jvm_resources(
name = "graphql_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "graphql",
module_name = "intellij.graphql",
visibility = ["//visibility:public"],
srcs = glob(["gen/**/*.kt", "gen/**/*.java", "src/main/**/*.kt", "src/main/**/*.java", "src/gen/**/*.kt", "src/gen/**/*.java"], allow_empty = True),
deps = [
"@lib//:kotlin-stdlib",
"@community//platform/platform-api:ide",
"@community//platform/ide-core-impl",
"@community//platform/platform-impl:ide-impl",
"@community//platform/usageView",
"@community//xml/xml-parser:parser",
"//plugins/JavaScriptLanguage/javascript-parser",
"//plugins/JavaScriptLanguage/javascript-frontback-impl",
"@community//platform/lang-api:lang",
"@community//platform/lang-impl",
"@community//platform/core-impl",
"@community//platform/core-api:core",
"@community//plugins/yaml",
"@community//platform/core-ui",
"@community//platform/platform-util-io:ide-util-io",
"@community//platform/analysis-impl",
"@community//platform/code-style-impl:codeStyle-impl",
"@community//xml/impl",
"//plugins/JavaScriptLanguage:javascript",
"//plugins/JavaScriptLanguage:javascript-impl",
"@community//platform/projectModel-api:projectModel",
"@community//platform/projectModel-impl",
"@community//plugins/yaml/backend",
"@community//plugins/IntelliLang:langInjection",
"@community//platform/vcs-impl",
"@community//spellchecker",
"//webcore/impl:webide-impl",
"@community//platform/backend/workspace",
"@lib//:swingx",
"@lib//:gson",
"@lib//:commons-io",
"@lib//:snakeyaml",
"@lib//:guava",
"@lib//:http-client",
"@ultimate_lib//:graphql-io-github-cdimascio-dotenv-kotlin",
"@ultimate_lib//:graphql-reactivestreams-reactive-streams",
"@ultimate_lib//:graphql-graphql-java-dataloader",
"@ultimate_lib//:graphql-atlassian-commonmark",
],
runtime_deps = [":graphql_resources"]
)
jvm_library(
name = "graphql_test_lib",
visibility = ["//visibility:public"],
srcs = glob(["src/test/**/*.kt", "src/test/**/*.java"], allow_empty = True),
associates = [":graphql"],
deps = [
"@lib//:kotlin-stdlib",
"@community//platform/platform-api:ide",
"@community//platform/ide-core-impl",
"@community//platform/platform-impl:ide-impl",
"@community//platform/platform-impl:ide-impl_test_lib",
"@community//platform/usageView",
"@community//xml/xml-parser:parser",
"//plugins/JavaScriptLanguage/javascript-parser",
"//plugins/JavaScriptLanguage/javascript-frontback-impl",
"@community//platform/lang-api:lang",
"@community//platform/lang-impl",
"@community//platform/core-impl",
"@community//platform/core-api:core",
"@community//plugins/yaml",
"@community//platform/core-ui",
"@community//platform/platform-util-io:ide-util-io",
"@community//platform/analysis-impl",
"@community//platform/code-style-impl:codeStyle-impl",
"@community//xml/impl",
"//plugins/JavaScriptLanguage:javascript",
"//plugins/JavaScriptLanguage:javascript-impl",
"@community//platform/projectModel-api:projectModel",
"@community//platform/projectModel-impl",
"@community//plugins/yaml/backend",
"@community//plugins/yaml/backend:backend_test_lib",
"@community//plugins/IntelliLang:langInjection",
"@community//platform/vcs-impl",
"@community//platform/vcs-impl:vcs-impl_test_lib",
"@community//spellchecker",
"@community//spellchecker:spellchecker_test_lib",
"//webcore/impl:webide-impl",
"@community//platform/backend/workspace",
"@community//platform/testFramework",
"@community//platform/testFramework:testFramework_test_lib",
"//plugins/JavaScriptLanguage:javascript-testFramework",
"@community//java/testFramework",
"//ultimate/ultimate-resources:idea-ultimate-customization",
"//contrib/vuejs",
"@lib//:swingx",
"@lib//:gson",
"@lib//:commons-io",
"@lib//:snakeyaml",
"@lib//:guava",
"@lib//:http-client",
"@ultimate_lib//:graphql-io-github-cdimascio-dotenv-kotlin",
"@ultimate_lib//:graphql-reactivestreams-reactive-streams",
"@ultimate_lib//:graphql-graphql-java-dataloader",
"@ultimate_lib//:graphql-atlassian-commonmark",
],
runtime_deps = [":graphql_resources"]
)
jvm_test(
name = "graphql_test",
runtime_deps = [":graphql_test_lib"]
)
### auto-generated section `build intellij.graphql` end