aboutsummaryrefslogtreecommitdiff
path: root/cast/sender/channel/BUILD.gn
diff options
context:
space:
mode:
authorbtolsch <btolsch@chromium.org>2019-09-18 13:50:32 -0700
committerCommit Bot <commit-bot@chromium.org>2019-09-18 21:00:03 +0000
commit26491c18de210836015403b7882b465c4552f81d (patch)
tree22b3af72544051e5f840a520399190bf475bf8e9 /cast/sender/channel/BUILD.gn
parent17bbaa79f495bbd4e13983926413e11d92aec839 (diff)
downloadopenscreen-26491c18de210836015403b7882b465c4552f81d.tar.gz
Add framing for CastMessage
This change imports cast_framer.cc from Chromium's //components/cast_channel. Bug: openscreen:59 Change-Id: I189b6d1a243f439c8e8585afdb94f4bdd3d62251 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1775425 Commit-Queue: Brandon Tolsch <btolsch@chromium.org> Reviewed-by: Max Yakimakha <yakimakha@chromium.org> Reviewed-by: Ryan Keane <rwkeane@google.com>
Diffstat (limited to 'cast/sender/channel/BUILD.gn')
-rw-r--r--cast/sender/channel/BUILD.gn11
1 files changed, 10 insertions, 1 deletions
diff --git a/cast/sender/channel/BUILD.gn b/cast/sender/channel/BUILD.gn
index c383b6fa..13b061c1 100644
--- a/cast/sender/channel/BUILD.gn
+++ b/cast/sender/channel/BUILD.gn
@@ -6,24 +6,33 @@ source_set("channel") {
sources = [
"cast_auth_util.cc",
"cast_auth_util.h",
+ "cast_framer.cc",
+ "cast_framer.h",
]
deps = [
- "../../../platform",
+ "../../../util",
"proto",
]
+
+ public_deps = [
+ "../../../platform",
+ "../../../third_party/abseil",
+ ]
}
source_set("unittests") {
testonly = true
sources = [
"cast_auth_util_unittest.cc",
+ "cast_framer_unittest.cc",
]
deps = [
":channel",
"../../../platform",
"../../../third_party/googletest:gtest",
+ "../../../util",
"../../common/certificate/proto:unittest_proto",
"proto",
]