-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMODULE.bazel
39 lines (35 loc) · 1.54 KB
/
MODULE.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
###############################################################################
# Bazel now uses Bzlmod by default to manage external dependencies.
# Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel.
#
# For more details, please check https://github.com/bazelbuild/bazel/issues/18958
###############################################################################
bazel_dep(name = "abseil-cpp", version = "20240722.0")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "googletest", version = "1.15.2")
bazel_dep(name = "google_benchmark", version = "1.8.5")
bazel_dep(name = "re2", version = "2024-07-02")
bazel_dep(name = "rules_proto", version = "6.0.2")
bazel_dep(name = "protobuf", version = "29.0-rc1")
bazel_dep(name = "com_monkeynova_base_workspace")
bazel_dep(name = "com_monkeynova_gunit_main")
bazel_dep(name = "com_google_file_based_test_driver")
git_override(
module_name = "com_monkeynova_base_workspace",
remote = "https://github.com/monkeynova/base-workspace.git",
# branch = "main",
commit = "49867f63b311391d6ccdaf99b7e5cbc5b9750120",
)
git_override(
module_name = "com_monkeynova_gunit_main",
remote = "https://github.com/monkeynova/gunit-main.git",
# branch = "main",
commit = "33b6b882e19d8a2fd835f18184c3c7f1d19cfe25",
)
git_override(
module_name = "com_google_file_based_test_driver",
remote = "https://github.com/google/file-based-test-driver.git",
commit = "fd7661b168f640f68da39f97dad26e426eb6c339",
patches = ["fbtd.patch"],
patch_strip = 1,
)