blob: 3795f55ae580602646b365acbd0f6236af2467a4 [file] [log] [blame]
# Copyright 2021 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/components.gni")
executable("bin") {
output_name = "lights-cli"
sources = [
"lights-cli.cc",
"lights-cli.h",
"main.cc",
]
deps = [
"//sdk/fidl/fuchsia.hardware.light:fuchsia.hardware.light_llcpp",
"//sdk/lib/fdio",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/zx",
]
}
fuchsia_shell_package("lights-cli") {
deps = [ ":bin" ]
}