blob: ba3e00d45f3bfdfc4d1667f556c8621148a0de00 [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/config/fuchsia/rules.gni")
group("fifo") {
deps = [ ":demo-fifo" ]
}
driver_module("demo-fifo") {
configs += [
"//build/config:all_source",
"//build/config/fuchsia:enable_zircon_asserts",
"//build/unification/config:zircon-migrated",
]
sources = [ "demo-fifo.c" ]
deps = [
"//src/devices/lib/driver",
"//src/lib/ddk",
# TODO(fxb/38132): Migrate to the new bind rules and delete the below
"//src/lib/ddk:ddk-deprecated-binding-headers",
]
}