-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathBUILD.bazel
38 lines (37 loc) · 1 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
load("@poetry//:dependencies.bzl", "dependency")
py_binary(
name = "mod_scanner",
srcs = [
"__init__.py",
"cindex.py",
"mod_scanner.py",
],
data = [
"modules.yaml",
"//.github:CODEOWNERS",
# These are runtime deps, but switched to getting them via the dependency on
# on cc_toolchain.all_files injected by the aspect that is needed in order to get
# access to the toolchain headers. Ideally there would be an all_headers file list
# that we could depend on.
# "@mongo_toolchain//:v4/lib/libLLVM-12.so",
# "@mongo_toolchain//:v4/lib/libclang.so",
],
deps = [
dependency(
"regex",
group = "compile",
),
dependency(
"pyyaml",
group = "core",
),
dependency(
"codeowners",
group = "modules_poc",
),
dependency(
"pyzstd",
group = "modules_poc",
),
],
)