blob: 490abd2aad9cb957c85659dc325bc00d6735ae80 [file] [log] [blame]
# Copyright 2020 The Fuchsia 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("//src/sys/build/components.gni")
group("hardware_display_controller_provider") {
testonly = true
public_deps = [
":fake-hardware-display-controller-provider",
":hardware-display-controller-provider",
]
}
fuchsia_package_with_single_component(
"fake-hardware-display-controller-provider") {
testonly = true
component_name = "hdcp"
manifest = "meta/fake_hdcp.cmx"
deps = [ "fake:bin" ]
}
fuchsia_package_with_single_component("hardware-display-controller-provider") {
manifest = "meta/real_hdcp.cmx"
component_name = "hdcp"
deps = [ "real:bin" ]
}
group("tests") {
testonly = true
public_deps = [ "fake/tests" ]
}