-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMODULE.bazel
More file actions
34 lines (29 loc) · 1.26 KB
/
MODULE.bazel
File metadata and controls
34 lines (29 loc) · 1.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
module(name = "filtergen")
bazel_dep(name = "bazel_skylib", version = "1.9.0")
bazel_dep(name = "rules_bison", version = "0.4.bcr.1")
bazel_dep(name = "rules_cc", version = "0.2.17")
bazel_dep(name = "rules_flex", version = "0.4")
bazel_dep(name = "rules_m4", version = "0.3.bcr.1")
bazel_dep(name = "rules_shell", version = "0.7.1")
bazel_dep(name = "bazel_clang_tidy", dev_dependency = True)
bazel_dep(name = "buildifier_prebuilt", version = "8.5.1.2", dev_dependency = True)
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
bazel_dep(name = "rules_dejagnu", version = "0.0.1", dev_dependency = True)
# Not in BCR
git_override(
module_name = "rules_dejagnu",
commit = "b2a99c86513f9bc8f3309214a438e2914e89cf90",
remote = "https://github.com/jaqx0r/rules_dejagnu.git",
)
# To rebuild `compile_commands.json` for clangd:
# bazel run @hedron_compile_commands//:refresh_all
git_override(
module_name = "hedron_compile_commands",
commit = "abb61a688167623088f8768cc9264798df6a9d10",
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
)
git_override(
module_name = "bazel_clang_tidy",
commit = "c4d35e0d0b838309358e57a2efed831780f85cd0",
remote = "https://github.com/erenon/bazel_clang_tidy.git",
)