# Copyright 2019 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. source_set("channel") { sources = [ "channel/cast_auth_util.cc", "channel/cast_auth_util.h", "channel/message_util.cc", "channel/message_util.h", "channel/sender_socket_factory.cc", "channel/sender_socket_factory.h", ] deps = [ "../../util", "../common:channel", "../common/certificate/proto:certificate_proto", "../common/channel/proto:channel_proto", ] public_deps = [ "../../platform", "../../third_party/boringssl", ] } source_set("unittests") { testonly = true sources = [ "channel/cast_auth_util_unittest.cc", ] deps = [ ":channel", "../../platform", "../../third_party/googletest:gtest", "../common/certificate/proto:certificate_proto", "../common/certificate/proto:certificate_unittest_proto", ] }