summaryrefslogtreecommitdiff
path: root/chromium/components/mirroring/browser/BUILD.gn
blob: 2591ae765921150ff35fe530823621595f00f777 (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
39
40
41
42
43
44
45
46
# Copyright 2018 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.

import("//testing/test.gni")

source_set("browser") {
  sources = [
    "single_client_video_capture_host.cc",
    "single_client_video_capture_host.h",
  ]

  public_deps = [
    "//base",
    "//content/public/browser",
  ]

  deps = [
    "//media/capture",
    "//media/cast:common",
    "//media/cast:net",
    "//media/mojo/common:common",
    "//media/mojo/mojom:remoting",
    "//mojo/public/cpp/bindings",
  ]
}

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

  deps = [
    ":browser",
    "//base",
    "//base/test:test_support",
    "//content/test:test_support",
    "//media/cast:common",
    "//media/cast:net",
    "//media/cast:test_support",
    "//media/mojo/mojom:remoting",
    "//mojo/public/cpp/bindings",
    "//mojo/public/cpp/system",
    "//testing/gmock",
    "//testing/gtest",
  ]
}