| # 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", | |
| ] | |
| } |