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

media / cdm / library_cdm / BUILD.gn [blame]

# Copyright 2018 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("test_support") {
  testonly = true

  visibility = [ "//media/cdm:unit_tests" ]

  sources = [
    "mock_library_cdm.cc",
    "mock_library_cdm.h",
  ]

  deps = [
    ":cdm_host_proxy",
    "//base",
    "//media/cdm:cdm_api",
    "//testing/gmock",
  ]
}

source_set("cdm_host_proxy") {
  sources = [
    "cdm_host_proxy.h",
    "cdm_host_proxy_impl.h",
  ]

  deps = [
    "//base",
    "//media/cdm:cdm_api",
  ]
}