-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE
52 lines (44 loc) · 1.81 KB
/
WORKSPACE
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
40
41
42
43
44
45
46
47
48
49
50
51
52
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"],
integrity = "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=",
)
http_archive(
name = "boringssl",
# 0.0.0-20240126-22d349c
urls = ["https://github.com/google/boringssl/archive/22d349c4596e81425ec88f82fab47063a9a2bac6.tar.gz"],
integrity = "sha256-rMEdcuN6QX90hSzHXUCE7HEhcnwBvR6bVSUjHJsDwnc=",
strip_prefix = "boringssl-22d349c4596e81425ec88f82fab47063a9a2bac6",
)
http_archive(
name = "com_google_absl",
urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240116.2/abseil-cpp-20240116.2.tar.gz"],
integrity = "sha256-czcmuMOm05pBINfkXqi0GkNM2s3kAculAPFCNsSbOdw=",
strip_prefix = "abseil-cpp-20240116.2",
)
http_archive(
name = "com_google_googletest",
urls = ["https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz"],
integrity = "sha256-itWYxzrXluDYKAsILOvYKmMNc+c808cAV5OKZQG7pdc=",
strip_prefix = "googletest-1.14.0",
)
http_archive(
name = "com_google_re2",
urls = ["https://github.com/google/re2/releases/download/2023-09-01/re2-2023-09-01.zip"],
integrity = "sha256-IkuDUdxGM7EBLb2EdWTgYKRr5goioUY9S1uZP9S/Wcw=",
strip_prefix = "re2-2023-09-01",
)
git_repository(
name = "org_boost_boost",
commit = "b0d38289e8ed571ab078172194aad5980fff515e",
remote = "https://github.com/iceboy233/boost.git",
)
load("@org_boost_boost//:boost_deps.bzl", "boost_deps")
boost_deps()
git_repository(
name = "org_iceboy_trunk",
commit = "ee7aa17695b5b8e65171b23fba3a13a4c6632d64",
remote = "https://github.com/iceboy233/trunk.git",
)