blob: 8bad489f7153f8f6a99ea55afaef4a731bc80457 [file] [log] [blame]
# Copyright 2019 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("//build/bind/bind.gni")
import("//build/drivers.gni")
driver_bind_rules("test-bus-bind") {
rules = "test-bus.bind"
header_output = "test-bus-bind.h"
deps = [
"//src/devices/bind/fuchsia.platform",
"//src/devices/bind/fuchsia.test.platform",
]
}
fuchsia_driver("integration-test-driver") {
output_name = "integration-test"
configs += [ "//build/config:all_source" ]
# TODO: testonly = true
sources = [ "test.cc" ]
deps = [
":test-bus-bind",
"//sdk/banjo/fuchsia.hardware.platform.bus:fuchsia.hardware.platform.bus_banjo_cpp",
"//sdk/banjo/fuchsia.hardware.platform.device:fuchsia.hardware.platform.device_banjo_cpp",
"//src/devices/lib/driver",
"//src/lib/ddk",
"//src/lib/ddk:ddk-metadata-headers",
"//src/lib/ddktl",
"//zircon/system/ulib/fbl",
]
}
fuchsia_driver_component("integration-test") {
component_name = "integration-test"
deps = [ ":integration-test-driver" ]
}