blob: f68f2c7991073fe0e914d35399aeb31183dce892 [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/config/fuchsia/rules.gni")
bind_rules("test-bus-bind") {
rules = "test-bus.bind"
output = "test-bus-bind.h"
deps = [
"//src/devices/bind/fuchsia.platform",
"//src/devices/bind/test.platform",
]
}
driver_module("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",
"//src/devices/lib/driver",
"//src/lib/ddk",
"//src/lib/ddk:ddk-metadata-headers",
"//src/lib/ddktl",
"//zircon/public/lib/fbl",
]
}