mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
38 lines
708 B
Plaintext
38 lines
708 B
Plaintext
# 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("//media/media_options.gni")
|
|
|
|
if (enable_library_cdms) {
|
|
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",
|
|
]
|
|
}
|
|
}
|