aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorYuri Wiitala <miu@chromium.org>2020-03-06 16:00:19 -0800
committerCommit Bot <commit-bot@chromium.org>2020-03-11 21:50:32 +0000
commit31d567818e11429bd9055107e9da7db4f8af0d9d (patch)
tree9870e77798f0e643de2b942993325e2b28db98d4 /BUILD.gn
parente571ff1928aee98fcda37ee596166f18897e45e3 (diff)
downloadopenscreen-31d567818e11429bd9055107e9da7db4f8af0d9d.tar.gz
Cast Streaming Standalone Sender (1 of 3): SimulatedCapturer
Implements the components that reads media from a file (audio or video), decodes/resamples it to the required format, and emits it at a normal playback speed. This simulates live, real-time capture. Later commits will introduce the components that encode+stream the media with a Cast Streaming Sender, and plumb it all together. Also: initial BUILD.gn, DUPS, main.cc skeleton. Change-Id: Iaf6792e7340477c8a999e3ec1484a55f92e04317 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/2086691 Reviewed-by: Max Yakimakha <yakimakha@chromium.org> Commit-Queue: Yuri Wiitala <miu@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn5
1 files changed, 4 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 585cafc6..6e3e9e8d 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -71,7 +71,10 @@ group("gn_all") {
# TODO(crbug.com/openscreen/86): Build for Mac too once the mac buildbot
# compiler is upgraded.
if (!is_mac || force_build_standalone_receiver) {
- deps += [ "cast/standalone_receiver:cast_receiver" ]
+ deps += [
+ "cast/standalone_receiver:cast_receiver",
+ "cast/standalone_sender:cast_sender",
+ ]
}
}
}