aboutsummaryrefslogtreecommitdiff
path: root/cast/sender/channel/BUILD.gn
diff options
context:
space:
mode:
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",
]