-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWORKSPACE.bazel
More file actions
38 lines (32 loc) · 1.39 KB
/
WORKSPACE.bazel
File metadata and controls
38 lines (32 loc) · 1.39 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
35
36
37
38
# DashQL workspace - Bazel build for dashql-core (and optionally rest of repo).
# Grammar and packages are in the repo; external deps loaded here.
workspace(name = "dashql")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Rules C++ (required for cc_* rules)
http_archive(
name = "rules_cc",
sha256 = "1de5b47721fce0af0dd453b3071228fdfc44bd18199826b3f0b03b423aae9f65",
strip_prefix = "rules_cc-0.2.18",
urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.2.18/rules_cc-0.2.18.tar.gz"],
)
# FlatBuffers (C++ runtime; same commit as CMake: ee848a0)
http_archive(
name = "com_google_flatbuffers",
strip_prefix = "flatbuffers-ee848a0",
urls = ["https://github.com/google/flatbuffers/archive/ee848a0.zip"],
build_file = "//bazel:external_flatbuffers.BUILD",
)
# Unordered dense (ankerl) - header only; same ref as CMake: 3add2a6
http_archive(
name = "ankerl_unordered_dense",
strip_prefix = "unordered_dense-3add2a6",
urls = ["https://github.com/martinus/unordered_dense/archive/3add2a6.zip"],
build_file = "//bazel:external_ankerl.BUILD",
)
# RapidJSON - header only
http_archive(
name = "rapidjson",
strip_prefix = "rapidjson-24b5e7a8b27f42fa16b96fc70aade9106cf7102f",
urls = ["https://github.com/Tencent/rapidjson/archive/24b5e7a8b27f42fa16b96fc70aade9106cf7102f.zip"],
build_file = "//bazel:external_rapidjson.BUILD",
)