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