-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE
59 lines (50 loc) · 2.06 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
53
54
55
56
57
58
59
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_github_google_benchmark",
urls = ["https://github.com/google/benchmark/archive/refs/tags/v1.8.4.tar.gz"],
integrity = "sha256-PnBZtrEfsbvijjPgJRk5jKlMGBiHTr7RjlBNxvcJvkU=",
strip_prefix = "benchmark-1.8.4",
)
http_archive(
name = "com_github_google_flatbuffers",
urls = ["https://github.com/google/flatbuffers/archive/refs/tags/v2.0.0.tar.gz"],
integrity = "sha256-nduQMXmPT4dU0A/KLxpo7PnQ+D36xyOa8TEeT9mlZcQ=",
strip_prefix = "flatbuffers-2.0.0",
)
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",
)
git_repository(
name = "org_boost_boost",
commit = "2a72734ebe29e1c2abcf5b84443e385b20071e8d",
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 = "0be2a93fa780f608f8bfffa48a5e0367a5c08605",
remote = "https://github.com/iceboy233/trunk.git",
)