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
26 lines (24 loc) · 788 Bytes
/
Copy pathBUILD.bazel
File metadata and controls
26 lines (24 loc) · 788 Bytes
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
### auto-generated section `build intellij.java.indexing` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
resourcegroup(
name = "indexing_resources",
srcs = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "indexing",
module_name = "intellij.java.indexing",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
resources = [":indexing_resources"],
deps = [
"@lib//:kotlin-stdlib",
"//platform/core-api:core",
"//java/java-psi-api:psi",
"//platform/indexing-api:indexing",
"//platform/util",
"//platform/util/concurrency",
],
runtime_deps = ["//platform/backend"]
)
### auto-generated section `build intellij.java.indexing` end