summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-18 15:14:50 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-18 16:11:52 +0000
commit18a33169b8d9b96fc85d8819a1700c729cf794f6 (patch)
tree69d7fcc22663da7682b4ea66cf8e112751904dab /other
parent643eea60bb9dcf4ecb33d64666b1bc77cbfd7438 (diff)
Add bazel build scripts for c-toxcore.
This allows us and users to reproducibly build verified versions of the library with checksums. It will power the toktok-stack continuous build with checked-in checksums at specific git revisions.
Diffstat (limited to 'other')
-rw-r--r--other/BUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/other/BUILD b/other/BUILD
new file mode 100644
index 00000000..5c8997ec
--- /dev/null
+++ b/other/BUILD
@@ -0,0 +1,10 @@
1cc_library(
2 name = "monolith",
3 hdrs = ["monolith.h"],
4 visibility = ["//c-toxcore/auto_tests:__pkg__"],
5 deps = [
6 "//c-toxcore/toxav:monolith",
7 "//c-toxcore/toxcore:monolith",
8 "//c-toxcore/toxencryptsave:monolith",
9 ],
10)