aboutsummaryrefslogtreecommitdiff
path: root/cast/sender/channel/BUILD.gn
blob: 5fbed9cefcfbdd2b7cc75ea65d2665a4fa143310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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 = [
    "cast_auth_util.cc",
    "cast_auth_util.h",
    "message_util.cc",
    "message_util.h",
    "sender_socket_factory.cc",
    "sender_socket_factory.h",
  ]

  deps = [
    "../../common/channel/proto",
  ]

  public_deps = [
    "../../../platform",
  ]
}

source_set("unittests") {
  testonly = true
  sources = [
    "cast_auth_util_unittest.cc",
  ]

  deps = [
    ":channel",
    "../../../platform",
    "../../../third_party/googletest:gtest",
    "../../common/certificate/proto:unittest_proto",
    "../../common/channel/proto",
  ]
}