forked from bytedance/sonic-cpp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWORKSPACE
70 lines (58 loc) · 1.83 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
60
61
62
63
64
65
66
67
68
69
load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")
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",
sha256 = "b8a1527901774180afc798aeb28c4634bdccf19c4d98e7bdd1ce79d1fe9aaad7",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
],
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
git_repository(
name = "google_benchmark",
branch = "main",
remote = "https://github.com/google/benchmark.git",
)
new_git_repository(
name = "gtest",
branch = "main",
build_file = "//:bazel/gtest.BUILD",
remote = "https://github.com/google/googletest.git",
)
new_git_repository(
name = "rapidjson",
branch = "master",
build_file = "//:bazel/rapidjson.BUILD",
remote = "https://github.com/Tencent/rapidjson.git",
)
new_git_repository(
name = "cJSON",
branch = "master",
build_file = "//:bazel/cJSON.BUILD",
remote = "https://github.com/DaveGamble/cJSON.git",
)
new_git_repository(
name = "simdjson",
branch = "master",
build_file = "//:bazel/simdjson.BUILD",
remote = "https://github.com/simdjson/simdjson.git",
)
new_git_repository(
name = "yyjson",
branch = "master",
build_file = "//:bazel/yyjson.BUILD",
remote = "https://github.com/ibireme/yyjson.git",
)
git_repository(
name = "jsoncpp",
branch = "master",
remote = "https://github.com/open-source-parsers/jsoncpp",
)
git_repository(
name = "gflags",
branch = "master",
remote = "https://github.com/gflags/gflags.git",
)