summaryrefslogtreecommitdiff
path: root/toxav/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/BUILD.bazel')
-rw-r--r--toxav/BUILD.bazel7
1 files changed, 7 insertions, 0 deletions
diff --git a/toxav/BUILD.bazel b/toxav/BUILD.bazel
index dbe57b6c..f6c92b52 100644
--- a/toxav/BUILD.bazel
+++ b/toxav/BUILD.bazel
@@ -55,10 +55,16 @@ cc_test(
55) 55)
56 56
57cc_library( 57cc_library(
58 name = "pair",
59 hdrs = ["pair.h"],
60)
61
62cc_library(
58 name = "audio", 63 name = "audio",
59 srcs = ["audio.c"], 64 srcs = ["audio.c"],
60 hdrs = ["audio.h"], 65 hdrs = ["audio.h"],
61 deps = [ 66 deps = [
67 ":pair",
62 ":public", 68 ":public",
63 ":rtp", 69 ":rtp",
64 "//c-toxcore/toxcore:network", 70 "//c-toxcore/toxcore:network",
@@ -78,6 +84,7 @@ cc_library(
78 ], 84 ],
79 deps = [ 85 deps = [
80 ":audio", 86 ":audio",
87 ":pair",
81 ":public", 88 ":public",
82 "//c-toxcore/toxcore:network", 89 "//c-toxcore/toxcore:network",
83 "@libvpx", 90 "@libvpx",