|  | # 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("gpio-light-bind") { | 
|  | rules = "gpio-light.bind" | 
|  | output = "gpio-light-bind.h" | 
|  | tests = "bind-tests.json" | 
|  | deps = [ "//src/devices/bind/fuchsia.platform" ] | 
|  | } | 
|  |  | 
|  | driver_module("gpio-light") { | 
|  | configs += [ | 
|  | "//build/config:all_source", | 
|  | "//build/config/fuchsia:enable_zircon_asserts", | 
|  | ] | 
|  | configs += [ "//build/unification/config:zircon-migrated" ] | 
|  | sources = [ "gpio-light.cc" ] | 
|  | deps = [ | 
|  | ":gpio-light-bind", | 
|  | "//sdk/banjo/fuchsia.hardware.gpio", | 
|  | "//sdk/banjo/fuchsia.hardware.gpioimpl", | 
|  | "//sdk/fidl/fuchsia.hardware.light:fuchsia.hardware.light_llcpp", | 
|  | "//src/devices/lib/driver", | 
|  | "//src/lib/ddk", | 
|  | "//src/lib/ddktl", | 
|  | "//zircon/public/lib/fbl", | 
|  | "//zircon/public/lib/fidl", | 
|  | "//zircon/public/lib/sync", | 
|  | "//zircon/public/lib/zx", | 
|  | ] | 
|  | } | 
|  |  | 
|  | group("tests") { | 
|  | testonly = true | 
|  | deps = [ ":gpio-light-bind_test" ] | 
|  | } |