aboutsummaryrefslogtreecommitdiff
path: root/cast/sender/BUILD.gn
blob: 059322600f2912b3d2f0d484188a0d4e7972678c (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
38
# 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 = [
    "../common:certificate_proto",
    "../common:channel_proto",
  ]

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

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

  deps = [
    ":channel",
    "../../platform",
    "../../third_party/googletest:gtest",
    "../common:certificate_proto",
    "../common:certificate_unittest_proto",
  ]
}